開発環境
- macOS High Sierra - Apple
- Emacs (Text Editor)
- Python 3.6 (プログラミング言語)
入門 Python 3 (Bill Lubanovic (著)、斎藤 康毅 (監修)、長尾 高弘 (翻訳)、オライリージャパン)の5章(Pyの化粧箱: モジュール、パッケージ、プログラム)、5.7(復習問題)1、2、3、4.を取り組んでみる。
コード(Emacs)
Python 3
#!/usr/bin/env python3 print('5-1') def hours(): print('Open 9-5 daily')
入出力結果(Terminal, Jupyter(IPython))
$ ipython Python 3.6.5 (default, Mar 29 2018, 15:37:32) Type 'copyright', 'credits' or 'license' for more information IPython 6.2.1 -- An enhanced Interactive Python. Type '?' for help. In [1]: import zoo 5-1 In [2]: zoo.hours() Open 9-5 daily In [3]: from zoo import hours In [4]: hours() Open 9-5 daily In [5]: from zoo import hours as info In [6]: info() Open 9-5 daily In [7]: quit() $
0 コメント:
コメントを投稿