Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
124069 柯轶炜 财务管理 Python3 Compile Error 0 MS 0 KB 154 2025-07-10 22:17:15

Tests(0/0):


Code:

salaries = [] for _ in range(12): salary = float(input()) salaries.append(salary) average = sum(salaries) / 12 print(f"¥{average:.2f}")


Run Info:

  File "Main.py", line 7
    print(f"\uffe5{average:.2f}")
                          ^
SyntaxError: invalid syntax