#设置背景颜色 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
答案 0 :(得分:0)
f
字符串语法仅在Python 3.6中可用。试试
print("Total wall blocks: {}".format(len(self.wall_list)))
PS我假设您在**
周围使用print
进行强调。如果没有,请将它们也删除