開発環境
- OS X Mavericks - Apple(OS)
- Emacs (CUI)、BBEdit - Bare Bones Software, Inc. (GUI) (Text Editor)
- Python 3.4 (プログラミング言語)
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 コメント:
コメントを投稿