Quick actions

cmd+k|ctrl+k

Navigation

Languages

List Unpacking

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-14T06:09:45.240802Z

Updated

2026-07-14T06:09:45.240802Z

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