2018年3月17日土曜日

開発環境

入門 Python 3 (Bill Lubanovic (著)、斎藤 康毅 (監修)、長尾 高弘 (翻訳)、オライリージャパン)の1章(Pyの味)、1.9(復習問題)1-1、2、3、4、5.を取り組んでみる。

入出力結果(Terminal, Jupyter(IPython))

$ ipython
Python 3.6.4 (default, Dec 21 2017, 20:33:21) 
Type 'copyright', 'credits' or 'license' for more information
IPython 6.2.1 -- An enhanced Interactive Python. Type '?' for help.

In [1]: 8 * 9
Out[1]: 72

In [2]: 47
Out[2]: 47

In [3]: print(47)
47

In [4]: '47'
Out[4]: '47'

In [5]: print('47')
47

In [6]: quit()
$

0 コメント:

コメントを投稿