uchida1512 / draft

0 stars 0 forks source link

Python実践入門_2.2 Pythonの実行_対話モードでよく使う組み込み関数 #4

Open uchida1512 opened 4 years ago

uchida1512 commented 4 years ago
>>> a = 1
>>> a
1
>>> a
1
>>> a
1
>>> a = print(1)
1
>>> a
>>> a
>>> a