2014年9月8日月曜日

開発環境

Practical Programming: An Introduction to Computer Science Using Python 3 (Pragmatic Programmers) (Paul Gries (著)、Jennifer Campbell (著)、Jason Montojo (著)、Lynn Beighley (編集)、Pragmatic Bookshelf)のChapter 9(Repeating Code Using Loops)、9.10(Exercises) 7.を解いてみる。

9.10(Exercises) 7.

コード(BBEdit)

sample7.py

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

country_populations = [1295, 23, 7, 3, 47, 21]
total = 0

for country_population in country_populations:
    total += country_population

print(total)
print(sum(country_populations))

入出力結果(Terminal, IPython)

$ ./sample7.py
1396
1396
$

0 コメント:

コメントを投稿