2012年5月13日日曜日

開発環境

『初めてのPython 第3版』(Mark Lutz 著、夏目 大 訳、オライリー・ジャパン、2009年、ISBN978-4-87311-393-7) のI部(Pythonの基礎知識)のまとめ演習1(対話型セッションの利用)、2(プログラムファイルの作成、実行)を解いてみる。

1、2

コード(TextWrangler)

#!/usr/bin/env python
#encoding: utf-8

print("Hello module world!")

入出力結果(Terminal)

$ python
Python 3.2.3 (default, Apr 18 2012, 20:17:30) 
[GCC 4.2.1 Compatible Apple Clang 3.0 (tags/Apple/clang-211.12)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> "Hello World!"
'Hello World!'
>>> import sample
Hello module world!
>>> quit()
$ python sample.py
Hello module world!
$

0 コメント:

コメントを投稿