阅读量:0
要自定义format
函数的格式化规则,可以通过定义一个新的类并实现__format__
方法来实现。下面是一个简单的示例:
class CustomFormatter: def __init__(self, value): self.value = value def __format__(self, format_spec): if format_spec == 'custom': return f'Custom formatting: {self.value}' else: return format(self.value, format_spec) # 使用自定义格式化规则 value = 42 custom_value = CustomFormatter(value) print(format(custom_value, 'custom')) # 输出: Custom formatting: 42 # 使用内置的格式化规则 print(format(custom_value, 'd')) # 输出: 42
在上面的示例中,我们定义了一个CustomFormatter
类,并在其中实现了__format__
方法。当调用format
函数时,如果传入的格式化规则为custom
,则会执行自定义的格式化操作,否则会使用内置的格式化规则。