It is common to use f"var={var}" to see which values are being printed. In Python 3.8 and above, you can get the same outputs using f"{var=}".
f"var={var}"
f"{var=}"
My previous tips on Python string.