#python program to create A Spiral shape using Turtle Library .
Python code to create Spiral is here -
import turtle
import math
import random
wn = turtle.Screen()
wn.bgcolor('black')
Albert = turtle.Turtle()
Albert.speed(0)
Albert.color('white')
rotate=int(360)
def drawCircles(t,size):
for i in range(10):
t.circle(size)
size=size-4
def drawSpecial(t,size,repeat):
for i in range (repeat):
drawCircles(t,size)
t.right(360/repeat)
drawSpecial(Albert,100,10)
Steve = turtle.Turtle()
Steve.speed(0)
Steve.color('yellow')
rotate=int(90)
def drawCircles(t,size):
for i in range(4):
t.circle(size)
size=size-10
def drawSpecial(t,size,repeat):
for i in range (repeat):
drawCircles(t,size)
t.right(360/repeat)
drawSpecial(Steve,100,10)
Barry = turtle.Turtle()
Barry.speed(0)
Barry.color('blue')
rotate=int(80)
def drawCircles(t,size):
for i in range(4):
t.circle(size)
size=size-5
def drawSpecial(t,size,repeat):
for i in range (repeat):
drawCircles(t,size)
t.right(360/repeat)
drawSpecial(Barry,100,10)
Terry = turtle.Turtle()
Terry.speed(0)
Terry.color('orange')
rotate=int(90)
def drawCircles(t,size):
for i in range(4):
t.circle(size)
size=size-19
def drawSpecial(t,size,repeat):
for i in range (repeat):
drawCircles(t,size)
t.right(360/repeat)
drawSpecial(Terry,100,10)
Will = turtle.Turtle()
Will.speed(0)
Will.color('pink')
rotate=int(90)
def drawCircles(t,size):
for i in range(4):
t.circle(size)
size=size-20
def drawSpecial(t,size,repeat):
for i in range (repeat):
drawCircles(t,size)
t.right(360/repeat)
drawSpecial(Will,100,10)
------------------------------
Python Tutorial, Python, Python 3, Python Turtle, Python Turtle Graphics, Turtle Graphics, graphics in python, Drawing in python, Animations in python, beginner, easy, simple, drawing shapes in python, python tutorial for beginners with examples, best python tutorial, python tutorial for kids, kids, recursion in python, basic python, easy python for beginners, python programming, programming, beginner python exercises, turtle, exercise, graphics, animations, draw using Python
#python #pythonprogramming #Turtlegraphics #Animationinpython #pythongraphics
In questa pagina del sito puoi guardare il video online #Python della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Stack Coders 07 giugno 2021, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 94 volte e gli è piaciuto 4 spettatori. Buona visione!