文件关闭问题,求助一下
tool = 1new_file = 0
while tool == 1:
user_Input = (str(input(">>>")))
if user_Input == "new": #新建一个文件
print(" ")
user_Input_New_File = (str(input(">>>")))
with open(user_Input_New_File, "w") as f:
new_file = f.readlines()
各位大佬,为啥新建文件后会关闭这个py程序啊?,谢谢了 with open(user_Input_New_File, "w") as f:
new_file = f.readlines()
这里你选择的方式是以w模式打开文件,也就是写入模式,那你为什么要去读取文件内容呢?
是不是报错了 临时号 发表于 2022-6-6 23:09
这里你选择的方式是以w模式打开文件,也就是写入模式,那你为什么要去读取文件内容呢?
是不是报错了
en,ok,谢谢 饺影 发表于 2022-6-7 12:43
en,ok,谢谢
如果您的问题解决了,不要忘了设置最佳答案哦
页:
[1]