Write your code on the left hand side window on the editor below and hit the “RUN”- button. Your code result will show on the right hand side window. 

TRY THESE: 

  • print(“I love coding!”)
  • print(2 + 3)
  • print(3 * “HO”)

OR TRY SOMETHING A BIT TRICKIER:

  • import turtle
  • tilly = turtle.Turtle()
  • for x in range (5):
  • tilly.fd(200) (THIS LINE WILL BE INDENTED)
  • tilly.right(144) (THIS LINE WILL BE INDENTED)

You can find more example codes from our Facebook-page.