我在 Python 3.7 上。
我在第 3 行的代码工作正常,但是当我将基础公式插入第 4 行时,我的代码返回错误:
SyntaxError: f-string: mismatched '(', '{', or '[' (错误指向第 4 行中的第一个 '('。
我的代码是:
cheapest_plan_point = 3122.54
phrase = format(round(cheapest_plan_point), ",")
print(f"1: {phrase}")
print(f"2: {format(round(cheapest_plan_point), ",")}")
我无法弄清楚第 4 行有什么问题。