怎样用python写代码生成一个txt文件

2024-11-13 10:44:51
推荐回答(2个)
回答1:

with open('text.txt','w') as text:
    text.write('hello')

回答2:

f=open(r"c:\a.txt",'w')
f.write("hello")
f.close()