mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
7 lines
201 B
Python
7 lines
201 B
Python
x = (1, 2, 3)
|
|
a, b, c = x
|
|
#c, b, a = (a, b, c) # This gets optimized by newer Python compilers...
|
|
|
|
x = (1,)
|
|
a, = x
|
|
#c, = (a,) # This gets optimized by newer Python compilers...
|