2018年3月20日火曜日

開発環境

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

入出力結果(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]: 1 * 60 * 60
Out[1]: 3600

In [2]: 60 * 60
Out[2]: 3600

In [3]: seconds_per_hour = _

In [4]: seconds_per_hour * 24
Out[4]: 86400

In [5]: seconds_per_day = seconds_per_hour * 24

In [6]: _
Out[6]: 86400

In [7]: seconds_per_day / seconds_per_hour
Out[7]: 24.0

In [8]: seconds_per_day // seconds_per_hour
Out[8]: 24

In [9]: quit()
$

0 コメント:

コメントを投稿