How to split a tuple into multiple variables in Python

2 Answers

0 votes
w, x, y, z = (1, 5, 9, 12)

print(w)
print(x)
print(y)
print(z)




'''
run:

1
5
9
12

'''

 



answered Jul 5, 2022 by avibootz
0 votes
r, g, b = ('red', 'green', 'blue')

print(r) 
print(g) 
print(b) 




'''
run:

red
green
blue

'''

 



answered Jul 5, 2022 by avibootz

Related questions

1 answer 115 views
3 answers 308 views
1 answer 166 views
1 answer 121 views
2 answers 255 views
...