Quick actions

cmd+k|ctrl+k

Navigation

Languages

Tuple 2

Snippet info

Language

Python

Visibility

public

Author

harshdeepsaini2757

Created

2025-11-08T21:33:50.058978Z

Updated

2025-11-08T21:33:50.058978Z

my_tuple = (1,2,3,4,5)
new_tuple = my_tuple[1:4]
c,y,z *other = (7,8,9,10,11)
print(new_tuple)













INFO