摘要:
文本 操作文件的两种方式 第一种 fp = open('1.txt', 'w', encoding='utf-8') fp.write('...') fp.close() 第二种 with open('1.txt','w',encoding='utf-8') as fp: fp.write() w 阅读全文
摘要:
装饰器的使用方式 无参装饰器 user_data={'username':'dream','password':'521'} bank_data={'dream':{'pay_pwd':'521','balance':1000}} def register_input(func): def inne 阅读全文
摘要:
字符串 变量名的命名规范 数字 + 子母 + 下划线任意组合,数字不能开头 变量名的命名风格 下划线 + 小写字母 驼峰体 大驼峰 每个单词的首字母都大写 UserName 小驼峰 第一个单词的首字母小写,其他大写 userName 数字类型包括 int float type 字符串类型, str 阅读全文