摘要:
参考 https://www.cnblogs.com/linhaifeng/articles/5984922.html f=open('陈粒1',encoding='utf-8') open data=f.read() read print(data)f.close() close readable 阅读全文
摘要:
zip print(list(zip(('a','n','c','d'),(1,2,3)))) [('a', 1), ('n', 2), ('c', 3)] 一一对应 元组变列表 keys() 取字典key values() 取字典value print(ord('a')) 字符转ASCII pri 阅读全文