摘要: *与**用法详解 在函数的传参中使用,意为将传入的所有值打包为一个元组* def add(*args): res = 0 print(args) for i in args: res += i return res 结果为 add(1,2,3,4) (1, 2, 3, 4) 10 在函数的传参中使用 阅读全文
posted @ 2021-11-22 21:18 llxxssll 阅读(150) 评论(0) 推荐(0)