cara mengubah ukuran kura -kura dalam 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.
RSteepbroR