Quick actions

cmd+k|ctrl+k

Navigation

Languages

List Unpacking

Snippet info

Language

Python

Visibility

public

Author

harshdeepsaini2757

Created

2025-11-05T22:10:47.52656Z

Updated

2025-11-05T22:10:47.52656Z

# List Unpacking\
a,b,c,*other,d = [1,2,3,4,5,6,7,8]
print(a)
print(b)
print(c)
print(other)
print(d)






INFO