開発環境
- macOS High Sierra - Apple
- Emacs (Text Editor)
- Python 3.7 (プログラミング言語)
Head First Python 第2版 ―頭とからだで覚えるPythonの基本 (Paul Barry (著)、嶋田 健志 (監修)、木下 哲也 (翻訳)、オライリージャパン)の3章(構造化データ - 構造化データを扱う)、自分で考えてみよう(p. 129)を取り組んでみる。
コード(Emacs)
Python 3
#!/usr/bin/env python3 vowels = set('aeiou') word = input('単語を入力してください。母音を探します。') found = vowels.intersection(set(word)) for vowel in found: print(vowel)
入出力結果(Terminal, Jupyter(IPython))
$ ./vowels7.py 単語を入力してください。母音を探します。Head First Python 2nd edition a o i e $
0 コメント:
コメントを投稿