Python/gloss python try else

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python尝试其他

尝试其他

你可以使用 else 关键字,用于定义在未引发错误的情况下要执行的代码块:

在这个例子中, try 块不会产生任何错误:

  try:
  print("Hello")
except:
  print("Something went 
  wrong")
else:
  print("Nothing went wrong")