Nilai cetak Python dan nama variabel

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