2018年9月3日月曜日

開発環境

  • macOS High Sierra - Apple
  • Emacs (Text Editor)
  • Python 3.7 (プログラミング言語)

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

コード(Emacs)

Python 3

#!/usr/bin/env python3

print('1.')

guess_me = 7

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

print('2.')

start = 1

while True:
    if start < guess_me:
        print('too low')
    elif start == guess_me:
        print('found it!')
    else:
        print('oops')
        break
    start += 1

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

$ ./sample1.py
1.
just right
2.
too low
too low
too low
too low
too low
too low
found it!
oops
$

0 コメント:

コメントを投稿