開発環境
- 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部(モジュール)のまとめ演習1.(簡単なモジュールファイルのインポート)を解いてみる。
その他参考書籍
1.(簡単なモジュールファイルのインポート)
コード(BBEdit)
sample.py
#!/usr/bin/env python3.3 #-*- coding: utf-8 -*- def countLines(name): with open(name) as f: return len(f.readlines()) def countChars(name): with open(name) as f: return len(f.read()) def test(name): return (countLines(name), countChars(name)) def test1(): name = input("ファイル名: ") with open(name) as f: lines = len(f.readlines()) f.seek(0) chars = len(f.read()) return (lines, chars)
入出力結果(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. >>> names = ["sample.txt", "sample.py"] >>> import sample >>> funcs = [sample.countLines, sample.countChars, sample.test] >>> for func in funcs: ... for name in names: ... print(func(name)) ... 5 21 73 454 (5, 73) (21, 454) >>> for func in funcs: ... for name in names: ... print(func.__name__, name, func(name)) ... countLines sample.txt 5 countLines sample.py 21 countChars sample.txt 73 countChars sample.py 454 test sample.txt (5, 73) test sample.py (21, 454) >>> sample.test1() ファイル名: sample.txt (5, 73) >>> sample.test1() ファイル名: sample.py (21, 454) >>> quit() $
0 コメント:
コメントを投稿