'2.6.5(r265:79063,2010 年 4 月 16 日,13:57:41)\n[GCC 4.4.3]'
我有这个
#! /usr/bin/env python
f = open('filetest', 'w')
f.write("This is a line")
f.close()
f = open('filetest', 'r')
for i in f.readlines():
print i,
这会像这样打印 o/p:
$ ./filetest.py
This is a line
abc@abc-ubuntu:~/pythonpractice$
我想知道为什么在打印“这是一行”后提示会转到换行符?因为cat filestest
给出了这个:
$ cat filetest
This is a lineabc@abc-ubuntu:~/pythonpractice$