摘要:
##在 python 里 转换的语言为json 但是只能处理简单的 列表 字典等 pickle ### 转换后 为 二进制 别的 和 json 是一样的 pickle 只能在Pytho 本语言使用 阅读全文
摘要:
abs() 取绝对值 all() 列表中 有0 就是 F, any () 列表为空是 F bin() 数字转换成二进制 >>> chr(98)'b'>>> >>> ord('b')98>>> >>> a = "for i in range(10):print i" >>> exec(a)0123 . 阅读全文
摘要:
>>> from collections import Iterable ###导入可迭代判断莫快递 >>> isinstance([],Iterable)True>>> >>> >>> isinstance({},Iterable)True>>> isinstance(100,Iterable) 阅读全文