You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 01:09:52 +08:00
14 lines
125 B
Python
14 lines
125 B
Python
a = (1, 2, 3)
|
|
del a
|
|
|
|
b = [4, 5, 6]
|
|
del b[1]
|
|
del b[:]
|
|
|
|
c = [0,1,2,3,4]
|
|
del c[:1]
|
|
del c[2:3]
|
|
|
|
d = [0,1,2,3,4,5,6]
|
|
del d[1:3:2]
|