上一页 1 ··· 10 11 12 13 14
摘要: 文本 操作文件的两种方式 第一种 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 阅读全文
posted @ 2023-12-12 16:24 蓝幻ﹺ 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 装饰器的使用方式 无参装饰器 user_data={'username':'dream','password':'521'} bank_data={'dream':{'pay_pwd':'521','balance':1000}} def register_input(func): def inne 阅读全文
posted @ 2023-12-12 14:12 蓝幻ﹺ 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 字符串 变量名的命名规范 数字 + 子母 + 下划线任意组合,数字不能开头 变量名的命名风格 下划线 + 小写字母 驼峰体 大驼峰 每个单词的首字母都大写 UserName 小驼峰 第一个单词的首字母小写,其他大写 userName 数字类型包括 int float type 字符串类型, str 阅读全文
posted @ 2023-12-12 11:44 蓝幻ﹺ 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 【一】函数的四种定义方式 无参无返回值的函数 def index(): res = 1 + 1 print(res) index() #2 有参无返回值的函数 def index(x): print(x) index(1) #1 有参有返回值 def index(x): return x res = 阅读全文
posted @ 2023-12-11 19:23 蓝幻ﹺ 阅读(19) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14