无效的语法代码

时间:2018-08-09 02:39:18

标签: python

#设置背景颜色         arcade.set_background_color(arcade.color.AMAZON)

    # Set the viewport boundaries
    # These numbers set where we have 'scrolled' to.
    self.view_left = 0
    self.view_bottom = 0
    **print(f"Total wall blocks: {len(self.wall_list)}")**

def on_draw(self):
    """
    Render the screen.
    """
当代码全部运行时,

无效的语法会不断出现。我通常很擅长为学生解决Python代码中的问题,但这让我很沮丧。我们使用Python 3.4.4

1 个答案:

答案 0 :(得分:0)

f字符串语法仅在Python 3.6中可用。试试

print("Total wall blocks: {}".format(len(self.wall_list)))

PS我假设您在**周围使用print进行强调。如果没有,请将它们也删除