yunde110 发表于 2017-5-7 09:27:40

python使用tuple作参数

def a(*aa):
print aa
b=(1,2,3)
a(*b)
1
页: [1]
查看完整版本: python使用tuple作参数