2014年12月15日月曜日

開発環境

Introducing Python: Modern Computing in Simple Packages(Bill Lubanovic (著)、 O'Reilly Media)のChapter 4(Py Crust: Code Structures)、Things to Do 4.2.を解いてみる。

Things to Do 4.2.

コード(BBEdit)

sample2.py

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

guess_me = 7

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

入出力結果(Terminal, IPython)

$ ./sample2.py
too low
too low
too low
too low
too low
too low
found it!
$

0 コメント:

コメントを投稿