+ 1
Turtle
In python there is turtle right? I forgot how to activate it. It is turtle.forward and turtle.left/right?
11 Answers
+ 6
Thanks to YouTube! This might help you đ
https://m.youtube.com/watch?v=oAz5eIpgTpg
đ„ Learn Python Programming - 3 - The Turtle - YouTube
https://m.youtube.com/watch?v=p7CiFhiTdvY
đ„ Python Turtle Graphics Tutorial #1 - Introduction - YouTube
+ 5
That link not found...
+ 5
Netra đ€Š why tho?
+ 2
it worked on IDLE
+ 2
thanks!
+ 2
im not allowed to watch youtube though
+ 2
đ€·đŸââïž
+ 1
Import turtle package
+ 1
thx đ
+ 1
import turtle
0
first type:
from turtle import *
then you can use the turtle methods without the module name like:
forward(10)
seth(90)
backward(50)
unless youâre just asking how to turn right just use:
turtle.rt(angle) or
turtle.right(angle)