Skip to content

Instantly share code, notes, and snippets.

@yuitest
Created October 18, 2014 14:36
Show Gist options
  • Save yuitest/333bb5f928704769263b to your computer and use it in GitHub Desktop.
Save yuitest/333bb5f928704769263b to your computer and use it in GitHub Desktop.
Python 3 の素敵ポイント
first, *rest = (1, 2, 3, 4, 5)
# ってやると、 first == 0 で rest == [2, 3, 4, 5] になる。
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment