简体   繁体   中英

Can't seem to get turtle graphics to work on VsCode

I basically can't seem to be able to make turtle work for me. It always prompts errors that the names are not available.
My current issue which I can't seem to solve is that I get the Error:

Cannot import 'Screen' from partially initialized module 'turtle' (most likely due to a circular import).

I am just using a simple code:

from turtle import Screen, Turtle

screen = Screen()

turtle = Turtle ()

turtle.forward(100)

screen.mainloop()

turtle.done()

I would love some ideas on how to solve this issue.

Try this:

import turtle
screen = turtle.Screen()
turtle = turtle.Turtle()
turtle.forward(100)
screen.mainloop()
turtle.done()

If you want to look at other things in the library click here

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM