美文网首页
2019-01-26元组

2019-01-26元组

作者: a35f9c03b68e | 来源:发表于2019-01-26 19:09 被阅读0次

def foo(args1,argst):
print(args1)
print(
argst)

foo("hello","if","you","love")

hello
if you love

*argst是一个长短可变的参数,用元组表示

def f():
return 1,2,3

f()
(1, 2, 3)

元组用来函数返回

相关文章

网友评论

      本文标题:2019-01-26元组

      本文链接:https://www.haomeiwen.com/subject/mvaijqtx.html