Debug f-strings

Prints the expression and the value in a single line.

Example from the python REPL

In [16]: foo = 18
In [17]: print(f"{foo=}")
foo=18