📜  模块 turtle 没有前向成员 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:41.834000             🧑  作者: Mango

代码示例1
from turtle import Screen, Turtle

screen = Screen()

turtle = Turtle()

turtle.forward(100)

screen.mainloop()