I'm running the latest PyCharm Pro version and trying to run the below code from a scratch file but it doesn't seem to work
import turtlewn = turtle.Screen()
alex = turtle.Turtle()
alex.forward(150)
alex.left(90)
alex.forward(75)
By not working I mean, no window is popping out however I do see in the output saying
Process finished with exit code 0
Any idea
- If it can be done via PyCharm
- What am I missing in terms of configuration
Cheers