摘要: python 函数 def test(x): print(x) test(1) # 需要一 一对应多一个不行,少一个也不行 def test(x,*y): #x 表示形参 *y表示可变参数 print(x) print(y) test(1,2) # 1表示实参,赋值给x ,*y表示传任意参数,不需要 阅读全文
posted @ 2020-04-10 23:15 测试艺术家 阅读(462) 评论(0) 推荐(0) 编辑