python基础之文件的输入输出
1:将一串字符串写入到一个新的文件中
先定义一个变量,存储要输入的字符串
some_str = '''\ I like learning python because python is fun and also easy to use '''
声明一个文件变量名称,用open关键词,使用“写”的方式,打开文件的路径+文件名
f = open('c:/some_str.doc','w')
使用.write内嵌函数,将字符串写入到文件中,并关闭文件
f.write(some_str)
f.close
2:将文件内容读到程序中
第一步和写出文件是类似的,声明一个文件变量,用open关键词,使用“读”的方式,打开文件的路径+文件名。ps:python默认为读的方式
f = open('c:/some_str.doc')
下面使用两种循环方式,将文件内容打印出来
先用第一种,for循环
for i in f: print i f.close()
第二种,while循环
while True: line = f.readline() if len(line) == 0: break print (line) f.close()