The ’=’ format specifier causes the result of the expression or call to be printed after the ’=’ sign.
>>> name = "Eric"
>>> f"{name =}"
'name = Eric'
The ’=’ format specifier causes the result of the expression or call to be printed after the ’=’ sign.
>>> name = "Eric"
>>> f"{name =}"
'name = Eric'