>>> class Confused: ... def __format__(self, fmt): ... return f"What is {fmt}?" ... >>> c = Confused() >>> f"{c:xyz12}" 'What is xyz12?'