Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to change size of turtle in python

from turtle import Turtle
my_turtle = Turtle()


my_turtle.shapesize(1,5) # You need to include width and height. 
#1 is equal to 20 pixels, so 5 is equal to 100 pixels.
 
PREVIOUS NEXT
Tagged: #change #size #turtle #python
ADD COMMENT
Topic
Name
3+3 =