Hello, it's tricky to run the calculations using a function of a circle. Here is one approach that would mark the locations of 5 locations equally spaced. See if you can make sense of it. from turtle import * speed(0) rt(36) locs = [] for i in range(5): #Makes 1/5 of circle and appends loc for i in range(36): fd(3) lt(2) locs.append(pos()) #puts current location in locs list for i in [4,1,3,0,2,4]: #draws star to 5 marked locations goto(locs[i])
how do make it smaller?
The inside of the circle is not filling got any tips?
Thanks i completed my homework bc of you
Same
How would I make something like this rotate and loop
where you get that star picture?
thx for this, it helps me a lot ☺️
Forward is not work ,Attribute error
How to make a 14 points star?
thank for saying my life
thanks
Thanks for the challenges,
I'd like to know how to draw a circle around the five point star
Hello, it's tricky to run the calculations using a function of a circle. Here is one approach that would mark the locations of 5 locations equally spaced. See if you can make sense of it.
from turtle import *
speed(0)
rt(36)
locs = []
for i in range(5):
#Makes 1/5 of circle and appends loc
for i in range(36):
fd(3)
lt(2)
locs.append(pos()) #puts current location in locs list
for i in [4,1,3,0,2,4]: #draws star to 5 marked locations
goto(locs[i])
Bro drawing a pentagram on python turtle 💀