1,python读取文件内容
#!/usr/bin/python
# Filename: readfile.py
header = '''
abc
def
ghi
jkl
mno
'''
f = file('header.txt', 'w') # open for 'w'riting
f.write(header) # write text to file
f.close() # close the file
f = file('header.txt')
# if no mode is specified, 'r'ead mode is assumed by default
while True:
line = f.readline()
if len(line) == 0: # Zero length indicates EOF
break
print line,
# Notice comma to avoid automatic newline added by Python
f.close() # close the file
2,用Python创建一个新文件,内容是从0到9的整数, 每个数字占一行:
3,文件内容追加,从0到9的10个随机整数:
4,文件内容追加,从0到9的随机整数, 10个数字一行,共10行:
5,把标准输出定向到文件: