Quick actions

cmd+k|ctrl+k

Navigation

Languages

List Unpacking

Snippet info

Language

Python

Visibility

public

Author

dharmendrarah

Created

2023-01-07T07:22:15.299039Z

Updated

2023-01-07T08:04:40.855474Z



a,b,c,*other,d=[1,2,3,4,5,6,7,8,9]

print(a)
print(b)
print(c)
print(other)
print(d)
INFO