摘要: 查看这些配置,确保版本一样 阅读全文
posted @ 2022-08-29 18:31 lwx_R 阅读(22) 评论(0) 推荐(0)
摘要: #函数 def fun(a,b='b'): print("fun"+a+b) return a fun(b='b',a='a')#关键字实参 #传递任意数量实参 实参封装到元组里 def fun1(*arg): print(arg) for a in arg: print(a) fun1("lol" 阅读全文
posted @ 2022-08-29 16:11 lwx_R 阅读(36) 评论(0) 推荐(0)