2014年8月28日木曜日

開発環境

Learning Python (Mark Lutz (著)、Oreilly & Associates Inc)のPART Ⅱ.(Types and Operations)、Test Your Knowledge: Part II Exercises 4.(Tuple assignment)を解いてみる。

その他参考書籍

4.(Tuple assignment)

コード(BBEdit)

sample4.py

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

x = 'spam'
y = 'eggs'
x, y = y, x
# x, y = 'eggs', 'spam'
# x = 'eggs'
# y = 'spam'
print(x, y)                             # eggs spam

入出力結果(Terminal, IPython)

$ ./sample4.py
eggs spam
$

0 コメント:

コメントを投稿