#!Filename:12.1.py
temp="adfasfddasf";
f=file('poem.txt','a');
f.write(temp);
f.close();
f=file('poem.txt');
while True:
line=f.readline();
if len(line)==0:
break;
print line;
f.close();
不适用模块。。
单引号使用。。
文件每行的读入处理。。
中文注释不支持。。怎么破。。。。
参考:
http://maincoolbo.iteye.com/blog/626655