try: <语句> except <name>: <语句> #如果在try部份引发了名为'name'的异常,则执行这段代码 else: <语句> #如果没有异常发生,则执行这段代码
##错误判断的代码
##其中,想让文件写东西,在open一个文件的时候需要给r+
try:
file = open('/home/zbx/桌面/abcd','r+')
except Exception as e:
print("there is no file names as abcd")
input_text = input("Do you want to new a file ?")
if input_text == 'y':
file = open('/home/zbx/桌面/abcd','w')
else:
pass
else:
file.write('ssss')
file.close()