用python怎么创建一个文件

2024-12-16 10:54:12
推荐回答(1个)
回答1:

with open('test.txt','w') as f:
    f.write('hello world') #创建文件test.txt并写入hello world