2014年3月7日金曜日

開発環境

Learning Python (Mark Lutz (著)、Oreilly & Associates Inc)のPART III.(Statements and Syntax)、Test Your Knowledge(Part III Exercises)、4-a.(Program logic alternatives)を解いてみる。

その他参考書籍

4-a.(Program logic alternatives)

コード(BBEdit)

sample.py

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

L = [1, 2, 4, 8, 16, 32, 64]
x = 5

i = 0
while i < len(L):
    if 2 ** x == L[i]:
        print('at index', i)
        break
    i += 1
else:
    print(x, 'not found')

入出力結果(Terminal)

$ ./power.py 
at index 5
$

0 コメント:

コメントを投稿