Try replacing print(f"x = {x}") with print("x = {}".format(x))
print(f"x = {x}")
print("x = {}".format(x))