我想知道是否类似于:
x,y = (1,2),'a'
可能会在for循环中出现,例如:
my_tuple = ((1,2),(2,3),(3,4))
your_tuple = ('a','b','c')
for x,y in my_tuple, your_tuple:
...
目前,我什至无法弄清楚如何使用3个变量。
答案 0 :(得分:0)
亲爱的朋友,您可以使用zip! 这是代码:
my_tuple = ((1, 2), (2, 3), (3, 4))
your_tuple = ('a', 'b', 'c')
for x, y in zip(my_tuple, your_tuple):
print(x, y)