Skip to content

Instantly share code, notes, and snippets.

@mizushou
Last active August 3, 2019 03:37
Show Gist options
  • Save mizushou/86c53e5a6a0f8ea44653f2a967fd126a to your computer and use it in GitHub Desktop.
Save mizushou/86c53e5a6a0f8ea44653f2a967fd126a to your computer and use it in GitHub Desktop.
小ネタサンプル
"""
swap with tuple
"""
x, y = 1, 0
# swap with tuple
# tmpなどの変数を使わずにワンラインでswapできる
(x, y) = (y, x)
# x, yの値がswapしていることがわかる
print('x is {}, y is {}'.format(x, y))
# ---> x is 0, y is 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment