Entries from 2018-04-10 to 1 day

Python の代入の色々な書き方

location.href="https://python.ms/sub/misc/assignment/" # a = 1 2つ以上の変数に同じオブジェクトを代入 # a = b = c = 1 変数の入れ替え # a = "Hello" b = "こんにちは" a, b = b, a a # "こんにちは" b # "Hello" 2つ以上の変数に異なるオブジェクト…