You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

01_simple_line.py 93B

3 months ago
3 months ago
12345678
  1. from turtle import Turtle
  2. sophia = Turtle()
  3. sophia.forward(100)
  4. sophia.screen.mainloop()