開発環境
- 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 4.(Introducing Python Object Types)、Test Your Knowledge: Quiz 2.を解いてみる。
その他参考書籍
Test Your Knowledge: Quiz 2.
コード(BBEdit)
sample2.py
#!/usr/bin/env python3 #-*- coding: utf-8 -*- print('Hello, Emacs world!') print('Hello, ipython world!') print('Hello, shell(bash) world!')
入出力結果(Terminal, IPython)
$ ./sample2.py Hello, Emacs world! Hello, ipython world! Hello, shell(bash) world! $
0 コメント:
コメントを投稿