- Get link
- X
- Other Apps
- Get link
- X
- Other Apps
Expected output:
aTuple = (10, 20, 30, 40) # Your code print(a) # should print 10 print(b) # should print 20 print(c) # should print 30 print(d) # should print 40
Code :
aTuple = (10, 20, 30, 40)
a,b,c,d=aTuple
print(a)
print(b)
print(c)
print(d)
Comments
Post a Comment