hi in the turtle documentation, they say that for change a turtle size you use the metode shapesize or turtlesize, but when i try it says AttributeError: 'Turtle' object has no attribute 'shapesize' on line 33 (i'm using turtle repl)
import turtle
t= turtle.Turtle() t.setheading(90) wn= turtle.Screen()
def up(): t.forward(100) while True: wn.listen() wn.onkey(up, 'Up')
thay's an example it works in a turtle repl but not in a normal python one
how to change turtle size
hi in the turtle documentation, they say that for change a turtle size you use the metode shapesize or turtlesize, but when i try it says
AttributeError: 'Turtle' object has no attribute 'shapesize' on line 33
(i'm using turtle repl)
import turtle
t= turtle.Turtle()
t.setheading(90)
wn= turtle.Screen()
def up():
t.forward(100)
while True:
wn.listen()
wn.onkey(up, 'Up')
thay's an example it works in a turtle repl but not in a normal python one
@SixBeeps