開発環境
- OS X Yosemite - Apple (OS)
- Emacs (CUI)、BBEdit - Bare Bones Software, Inc. (GUI) (Text Editor)
- Python 3.4 (プログラミング言語)
Introducing Python: Modern Computing in Simple Packages(Bill Lubanovic (著)、 O'Reilly Media)のChapter 4(Py Crust: Code Structures)、Things to Do 4.1.を解いてみる。
Things to Do 4.1.
コード(BBEdit)
sample1.py
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
guess_me = 7
if guess_me < 7:
print('too low')
elif guess_me > 7:
print('too high')
else:
print('just right')
入出力結果(Terminal, IPython)
$ ./sample1.py just right $
0 コメント:
コメントを投稿