valor de impressão python e nome variável

#!/usr/bin/env python3
foo = 1
bar = 2
print(f"{foo=} {bar=}")
Bewildered Buzzard