開発環境
- macOS High Sierra - Apple
- Emacs (Text Editor)
- Python 3.6 (プログラミング言語)
入門 Python 3 (Bill Lubanovic (著)、斎藤 康毅 (監修)、長尾 高弘 (翻訳)、オライリージャパン)の3章(Pyの具: リスト、タプル、辞書、集合)、3.8(復習問題)3-1、2、3.を取り組んでみる。
コード(Emacs)
Python 3
#!/usr/bin/env python3 print('3-1') year_list = [1980, 1981, 1982, 1983, 1984, 1985] print('3-2') print(f'{year_list[3]}年') print('3-3') print(f'{year_list[-1]}年')
入出力結果(Terminal, Jupyter(IPython))
$ ./sample1.py 3-1 3-2 1983年 3-3 1985年 $
0 コメント:
コメントを投稿