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在这里做什么?这是什么意思?
f-strings是python中的一种格式语法。您可以(例如)在字符串中使用花括号并将表达式求值。在这种情况下,变量名会格式化为字符串