значение печати Python и имя переменной

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