print支持輸出重定向到文件

將1-100循環輸出,並生成一個名爲num.txt的文件
python

num = open('num.txt','a')
for i in range(1,101):
    print >> num , i
num.close()
相關文章
相關標籤/搜索