開発環境
- OS X Mavericks - Apple(OS)
- Emacs (CUI)、BBEdit - Bare Bones Software, Inc. (GUI) (Text Editor)
- Python (プログラミング言語)
Learning Python (Mark Lutz (著)、Oreilly & Associates Inc)のPART Ⅱ.(Types and Operations)、Chapter 6.(The Dynamic Typing Interlude)、Test Your Knowledge: Quiz 1.を解いてみる。
その他参考書籍
Test Your Knowledge: Quiz 1.
コード(BBEdit)
sample1.py
#!/usr/bin/env python3 #-*- coding: utf-8 -*- a = "spam" print(a) # spam b = a print(a, b) # spam spam b = "shrubbery" print(a, b) # spam shrubbery
入出力結果(Terminal, IPython)
$ ./sample1.py spam spam spam spam shrubbery $
0 コメント:
コメントを投稿