摘要: def empty(): # 不传参函数 print("参数为空") empty() print("--" * 50) def key_parameter(name, age): # 关键参数,必传,并且对应 print("name:%s" % name) print("age:%s" % age) 阅读全文
posted @ 2024-09-03 17:50 GDquicksand 阅读(6) 评论(0) 推荐(0) 编辑