遍历* args?

遍历* args?,第1张

遍历* args?

获得 准确的 语法:

def userInput(ItemA, ItemB, *args):    THIS = ItemA    THAT = ItemB    MORE = args    print THIS,THAT,MOREuserInput('this','that','more1','more2','more3')

您将分配给

*
中的前面的。然后MORE成为元组签名中具有可变长度内容的元组
args``MORE``args``userInput

输出

this that ('more1', 'more2', 'more3')

正如其他人所述,将其

args
视为可迭代的对象更为常见:

def userInput(ItemA, ItemB, *args):        lst=[]    lst.append(ItemA)    lst.append(ItemB)    for arg in args:        lst.append(arg)    print ' '.join(lst)userInput('this','that','more1','more2','more3')

输出:

this that more1 more2 more3


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5143401.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存