📜  python try except - Python代码示例

📅  最后修改于: 2022-03-11 14:46:55.951000             🧑  作者: Mango

代码示例6
try:
  print("I will try to print this line of code")
except Exception as e:
  print(f"Error message: {}")