首页 > 代码库 > python输出到文件

python输出到文件

>>> file=open(‘txt.txt‘,‘a‘)   
>>> print >> file,‘hello,world‘
>>> file.close()

  

python输出到文件