1. Make Color Full Circle:
import turtle
t = turtle.Turtle()
t.speed(0)
t.penup()
t.goto(0, -150)
t.pendown()
for i in range(360):
t.color('black','red')
t.begin_fill()
t.circle(100)
t.end_fill()
t.right(5)
Video Link -
Output:
2. Make
import turtle
turtle.speed(0)
for i in range(200):
turtle.forward(i)
turtle.right(91)
turtle.done()
Video Link -
Output -
3. Design:
import turtle
turtle.speed(0)
for i in range(36):
turtle.circle(100)
turtle.right(10)
turtle.circle(50)
turtle.right(170)
turtle.circle(25)
turtle.right(85)
turtle.done()
Video Link -
Output:
4. Deign:
import turtle
turtle.speed(0)
for i in range(36):
turtle.forward(200)
turtle.right(170)
turtle.done()
Video Link -
Output:
5. Design:
import turtle
turtle.speed(0)
for i in range(36):
turtle.circle(100)
turtle.right(10)
turtle.done()
Video Link -
Output:
You Also Read This Topics :-
1. Battle of the AI Language Models: OpenAI's Chat GPT vs Google's BARD
2. 10 Creative and Mind-Blowing Python Turtle Examples to Inspire Your Next Project
3. Discover the Fun and Interactive World of Turtle Graphics in Python
6. Transforming Your Home with IoT: Discover the Benefits and Challenges of Smart Home Technology
7. Take Your Python Skills to the Next Level with These Advanced Turtle Examples ->
10. Revolutionizing Search: How Microsoft Bing+AI is Personalizing Your Results