运行 ❯
获取
你自己的 Python
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
print(5 + 4 - 7 + 3) """ Additions and subtractions have the same precedence, and we need to calculate from left to right. The calculation above reads: 5 + 4 = 9 9 - 7 = 2 2 + 3 = 5 """
5