vs代码的乌龟问题

Turtle issue with vs code

嗨,这是我第一次尝试在 python 中编写视频游戏代码。 所以我找到了一个教程视频,它是 运行 在与我相同的操作系统 (mac) 上但是当我在视频中编写设置时:

#Setup
import turtle

wn=turtle.Screen
wn.title("Pong")
wn.bgcolor("black")
wn.setup(width=800, heigth=600)
wn.tracer(0)

#Main game loop
while True:
    wn.update()

出现这个错误:

AttributeError: 'function' object has no attribute 'title'

有人知道这是什么意思以及如何解决吗? 对了我是运行python3.10.0

t1

试试这个

#Setup
import turtle

wn=turtle.Screen()#call the Screen like: Screen()
wn.title("Pong")
wn.bgcolor("black")
wn.setup(width=800, height=600)
wn.tracer(0)

#Main game loop
while True:
    turtle.update()

有效吗??

t1 失败试试这个

#Setup
import turtle

wn=turtle.Screen()#call the Screen like: Screen()
wn.title("Pong")
wn.bgcolor("black")
wn.setup(width=800, height=600)
wn.tracer(0)

#Main game loop
turtle.done()

尝试使用完成而不是更新
可以吗??