DEV Community

Discussion on: Write a function that shows off something unique or interesting about the language you're using

Collapse
 
rhymes profile image
rhymes

Same in Python

>>> [a, b] = [1, 999]
>>> a, b
(1, 999)
>>> [b, a] = [a, b]
>>> a, b
(999, 1)
Collapse
 
dance2die profile image
Sung M. Kim

Python has been on my mind lately. That's yet another good reason ;p