Answers for "how to change size of turtle in python"

0

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.
Posted by: Guest on February-09-2022

Code answers related to "how to change size of turtle in python"

Python Answers by Framework

Browse Popular Code Answers by Language