摘要: https://www.liaoxuefeng.com/wiki/ 阅读全文
posted @ 2017-11-16 20:58 papering 阅读(254) 评论(0) 推荐(0) 编辑
摘要: cerery http://docs.celeryproject.org/en/latest/userguide/index.html 阅读全文
posted @ 2017-11-16 20:02 papering 阅读(157) 评论(0) 推荐(0) 编辑
摘要: http://www.sohu.com/a/204244301_99961855 阅读全文
posted @ 2017-11-16 13:12 papering 阅读(323) 评论(0) 推荐(0) 编辑
摘要: l=[1,2,3]def f(l): l[1]=123print(l)f(l)print(l)s="abc"def f1(s): s="x"print(s)f1(s)print(s) 可变对象 浅复制,函数修改了原值 不可变对象,不影响 对于不可变类型(数值型、字符串、元组),因变量不能修改,所以运 阅读全文
posted @ 2017-11-16 10:52 papering 阅读(314) 评论(0) 推荐(0) 编辑