2013年5月25日土曜日

開発環境

『初めてのPython 第3版』(Mark Lutz 著、夏目 大 訳、オライリー・ジャパン、2009年、ISBN978-4-87311-393-7)のV部(モジュール)の19章(モジュールのインポート、リロード)の練習問題を解いてみる。

その他参考書籍

1, 2, 3, 4, 5

コード(BBEdit)

sample.py

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

def f():
    print("Hello, World!")

a = 10

入出力結果(Terminal)

$ python
Python 3.3.1 (default, Apr  6 2013, 12:29:18) 
[GCC 4.2.1 Compatible Apple Clang 4.1 ((tags/Apple/clang-421.11.66))] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import sample
>>> f()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'f' is not defined
>>> sample.f()
Hello, World!
>>> a
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'a' is not defined
>>> sample.a
10
>>> from sample import *
>>> f()
Hello, World!
>>> a
10
>>> 
[1]+  Stopped                 python
$ emacs sample.py
$ fg
python
import imp
import imp
>>> f()
Hello, World!
>>> a
10
>>> imp.reload(sample)
<module 'sample' from './sample.py'>
>>> sample.f()
Hello, Python!
>>> sample.a
20
>>> from sample import *
>>> f()
Hello, Python!
>>> a
20
>>> a=50
>>> a
50
>>> from sample import *
>>> sample.a = 100
>>> sample.a
100
>>> a
20
>>> quit()
$

0 コメント:

コメントを投稿