Python中的自定义错误

问题描述 投票:0回答:1
class CustomError(TypeError):
  def __init__(self,message,code):
    super().__init__(f'ErrorCode:{code}. {message}')
raise CustomError("This is a sample error message!",500)

好的,所以我才刚刚开始学习python中的自定义错误,并且讲师向我介绍了错误代码的概念。问题是-我不太了解这个fstring在这里做什么?这是什么意思?

python python-3.x python-2.7 python-requests custom-errors
1个回答
0
投票

f-strings是python中的一种格式语法。您可以(例如)在字符串中使用花括号并将表达式求值。在这种情况下,变量名会格式化为字符串

© www.soinside.com 2019 - 2024. All rights reserved.