2018年4月4日水曜日

開発環境

入門 Python 3 (Bill Lubanovic (著)、斎藤 康毅 (監修)、長尾 高弘 (翻訳)、オライリージャパン)の4章(Pyの皮: コード構造)、4.13(復習問題)1、2.を取り組んでみる。

コード(Emacs)

Python 3

#!/usr/bin/env python3

print('4-1')
guess_me = 7

if guess_me < 7:
    print('too low')
elif guess_me > 7:
    print('too high')
else:
    print('just right')

print('4-2')
guess_me = 7
start = 1
while True:
    if start < guess_me:
        print('too low')
    elif start == guess_me:
        print('found it!')
    else:
        print('opps')
        break
    start += 1

入出力結果(Terminal, Jupyter(IPython))

$ ./sample1.py
4-1
just right
4-2
too low
too low
too low
too low
too low
too low
found it!
opps
$

0 コメント:

コメントを投稿