開発環境
- macOS High Sierra - Apple
- Emacs (Text Editor)
- Python 3.7 (プログラミング言語)
入門 Python 3 (Bill Lubanovic (著)、斎藤 康毅 (監修)、長尾 高弘 (翻訳)、オライリージャパン)の4章(Pyの皮: コード構造)、4.13(復習問題)4-12.を取り組んでみる。
コード(Emacs)
Python 3
#!/usr/bin/env python3 print('12.') titles = ['Creature of Habit', 'Crewel Fate'] plots = ['A nun turns into a monster', 'A haunted yarn shop'] movies = dict(zip(titles, plots)) for k, v in movies.items(): print(f'{k}: {v}')
入出力結果(Terminal, Jupyter(IPython))
$ ./sample6.py 12. Creature of Habit: A nun turns into a monster Crewel Fate: A haunted yarn shop $
0 コメント:
コメントを投稿