- 论坛徽章:
- 0
|
本帖最后由 werm520 于 2011-11-01 11:31 编辑
- #! /usr/bin/python
- #filename: readline.py
- #coding:UTF-8
- f = open('/hequan/cdays-3-test.txt')
- for line in open('/hequan/cdays-3-test.txt'):
- line=f.readline()
- print line
- open('/hequan/cdays-3-result.txt','a').write(line)
- f.close()
复制代码 只要输入python进入交互界面,该程序就会自动运行,并生成一个readline.pyc文件{:3_204:}搞不懂这是怎么回事?
输出如下:
HIE-192-168-2-6-20110314053236:/hequan # python
Python 2.6 (r26:66714, May 5 2010, 14:02:39)
[GCC 4.3.4 [gcc-4_3-branch revision 152973]] on linux2
Type "help", "copyright", "credits" or "license" for more information.
1 key1
2 key2
3 key1
7 key3
8 key2
10 key1
14 key2
19 key4
20 key1
30 key3
Traceback (most recent call last):
File "/etc/pythonstart", line 8, in <module>
import rlcompleter
File "/usr/lib64/python2.6/rlcompleter.py", line 170, in <module>
readline.set_completer(Completer().complete)
AttributeError: 'module' object has no attribute 'set_completer' |
|