我有这段代码:
try:
if os.path.exists(os.path.join(self.path, self.custom_id)):
self.custom_id = self.custom_id + '_Resume' #started_event should returns the _id
except FileExistsError as e:
print(f'''You already resumed your training once.
\nPlease remove or rename your {os.path.join(self.path, self.custom_id)} folder and try again ''')
raise e
return self.custom_id
我真的不明白为什么我的输出仍然是以下
FileExistsError: [Errno 17] File exists: 'out/out_Resume'
我希望得到我放入例外中的打印语句。
有人可以向我解释我在做什么错吗?