摘要:
注: json.dumps : dict转成str json.dump是将python数据保存成json json.loads:str转成dict json.load是读取json数据 阅读全文
摘要:
#序列化:序列化 (Serialization)将对象的状态信息转换为可以存储或传输的形式的过程。 #本例把字典数据类型存成字符串存在硬盘 #文件只能存字符串和二进制码,字典之类的不可以 info={ 'name':'Han Jianghua', 'age':22 } f=open('第71.text','w') f.write(str(info))#f.write(info)存... 阅读全文
摘要:
#hex() 转16进制 oct()转8进制 print(hex(255)) print(oct(10)) #id() 返回内存地址 print(id('a')) ''' isinstance(object, classinfo) 如果参数object是classinfo的实例,或者object是classinfo类的子类的一个实例, 返回True。 如果object不是一个给定类型的的对象, ... 阅读全文
摘要:
#abs()取绝对值 ''' all(iterable) Return True if all elements of the iterable are true (or if the iterable is empty). ''' print(all([0,9,-8,'a'])) print(all([9,-8,'a'])) ''' any(iterable) Return True if a... 阅读全文