開発環境
- OS X Lion - Apple(OS)
- BBEdit - Bare Bones Software, Inc., Emacs(Text Editor)
- プログラミング言語: Python
『初めてのPython 第3版』(Mark Lutz 著、夏目 大 訳、オライリー・ジャパン、2009年、ISBN978-4-87311-393-7)のV部(モジュール)のまとめ演習6.(リロード)を解いてみる。
その他参考書籍
6.(リロード)
コード(BBEdit)
sample.py
#!/usr/bin/env python3.3 #-*- coding: utf-8 -*- message = "First version" def printer(): print(message)
Ctrl-Zで一時停止して変更を加えた後。
sample.py
#!/usr/bin/env python3.3 #-*- coding: utf-8 -*- message = "After editing" def printer(): print("reloaded: {0}".format(message))
入出力結果(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 >>> sample.printer() First version >>> [1]+ Stopped python $ vi sample.py $ fg python import imp import imp >>> imp.reload(sample) <module 'sample' from './sample.py'> >>> sample.printer() reloaded: After editing >>> quit() $
0 コメント:
コメントを投稿