Sep-09-2020, 03:58 PM
Hi.
I'm just learning to code in general and starting with Python.
I'm experimenting with the turtle drawing module.
I'm trying to create a circular stamp.
My plan was to change the turtle shape to "circle" and then adjust the size of the shape, lift the pen, and use the stamp() method where needed. For some reason I'm unable to change the size of my circular shaped turtle.
I get an error: AttributeError: 'Turtle' object has no attribute 'shapesize'
Here is a simplified example of what I'm trying to do, but get the error:
I found the shapesize() method on this page: https://docs.python.org/3/library/turtle...rtle.shape
Does anyone maybe have a minute help me figure this out?
Thanks!
I'm just learning to code in general and starting with Python.
I'm experimenting with the turtle drawing module.
I'm trying to create a circular stamp.
My plan was to change the turtle shape to "circle" and then adjust the size of the shape, lift the pen, and use the stamp() method where needed. For some reason I'm unable to change the size of my circular shaped turtle.
I get an error: AttributeError: 'Turtle' object has no attribute 'shapesize'
Here is a simplified example of what I'm trying to do, but get the error:
import turtle wn = turtle.Screen() jim = turtle.Turtle() jim.shape("circle") jim.shapesize(50,50) jim.stamp() jim.up() jim.forward(100)I expected the jim the turtle to leave a 50x50 circular stamp in the middle of my window, but as mentioned, for some reason "shapesize" is not being recognized as an attribute of Jim the turtle.
I found the shapesize() method on this page: https://docs.python.org/3/library/turtle...rtle.shape
Does anyone maybe have a minute help me figure this out?

Thanks!