gpt4 book ai didi

python - 写入文件并询问用户文件名

转载 作者:太空宇宙 更新时间:2023-11-03 17:50:12 25 4
gpt4 key购买 nike

    import sys
outfile = open( r'/Users/user1/Desktop/myDoc.txt', 'w' )
outfile.write("hello world")
outfile.close()

我试图创建一个程序来创建一个文件,并将 hello world 写入该文件,有两件事。现在我已经设置好了,因此它将保存到我的桌面并将文件命名为“myDoc.html”。我是否可以以某种方式纠正文件名,以便将其保存到任何人的桌面上,以便程序询问用户如何命名文件但保留 .txt 文件扩展名?

最佳答案

import os
outfile = input('Enter file name: ')
outfile = os.path.join(os.path.expanduser('~'),'Desktop',outfile)
with open(outfile +'.txt', 'w') as f:
f.write("hello world")

关于python - 写入文件并询问用户文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29200807/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com