蓝绝

博客园 首页 新随笔 联系 订阅 管理

2022年9月5日 #

摘要: def calc(a,b): #a,b 是形参,在函数定义处 c=a+b return c result = calc(10,20) #按位置传递参数 #10,20 为实参,在函数调用处 print(result) res = calc(b=20,a=10) #根据形参名称进行实参传递 print( 阅读全文
posted @ 2022-09-05 15:51 蓝绝 阅读(12) 评论(0) 推荐(0) 编辑

摘要: def calc(a,b): c=a+b return c result = calc(10,20) print(result) E:\PycharmProjects\pythonProject\venv\Scripts\python.exe E:/PycharmProjects/pythonPro 阅读全文
posted @ 2022-09-05 15:36 蓝绝 阅读(21) 评论(0) 推荐(0) 编辑

摘要: 阅读全文
posted @ 2022-09-05 15:08 蓝绝 阅读(10) 评论(0) 推荐(0) 编辑

摘要: s='天涯共此时' '编码' print(s.encode(encoding='GBK')) #在GBK这种编码格式中一个中文占2个字节 print(s.encode(encoding='UTF-8')) #在UTF-8这种编码格式中一个中文占3个字节 '解码' #byte代表就是一个二进制数据(字 阅读全文
posted @ 2022-09-05 15:04 蓝绝 阅读(24) 评论(0) 推荐(0) 编辑