2017-11-16から1日間の記事一覧

<Python> パスワードのために入力文字を表示しないプロンプト

めも。 http://ja.pymotw.com/2/getpass/

<Python> == と is の違い

違い。。。 isは、オブジェクト番号 id()で比較している。 ==はオブジェクトの内容で比較している。 In [1]: lst = [1,2,3] In [2]: lst2 = lst In [4]: id(lst) Out[4]: 439830664 In [5]: id(lst2) Out[5]: 439830664 In [6]: lst2 is lst Out[6]: True In…