try:
file = open('hhh','r+') #先去读取一个文件,如果能打开的话就可以写入
except Exception as e:
print(e)
response = input('do you want to create it?')
if response=='yes':
with open('hhh','w') as f:
pass
print('the file was created successfully')
else:
pass
else:#没有出错
file.write('hhhh')
file.close()
python基础--14.异常处理try
最新推荐文章于 2024-05-22 20:02:27 发布
本文介绍了一种Python中处理文件的方法,包括尝试读取并写入文件,如果文件不存在则询问用户是否创建新文件,并在确认后成功创建。此外,还展示了如何使用try...except...else结构来优雅地处理可能出现的异常。
摘要由CSDN通过智能技术生成