2014年10月5日日曜日

開発環境

Learning Python (Mark Lutz (著)、Oreilly & Associates Inc)のPART Ⅲ.(Statements and Syntax)、Chapter 14.(Iterations and Comprehensions)、Test Your Knowledge: Quiz 2.を解いてみる。

その他参考書籍

Test Your Knowledge: Quiz 2.

コード(BBEdit)

sample2.py

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

print('for loop')
l1 = []
for x in range(10):
    l1.append(x ** 2)
print(l1)

print('list comprehension')
l2 = [x ** 2 for x in range(10)]
print(l2)


入出力結果(Terminal, IPython)

$ ./sample2.py
for loop
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
list comprehension
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
$

0 コメント:

コメントを投稿