How to draw beautiful flower in Python Turtle

preview_player
Показать описание
In this video you will learn to draw multiple patterns by using basic circle in Turtle module.
This program is written using python list[] and range().

Rainbow Benzene with Python Turtle link:

💥Please subscribe to the channel:

Tetris game development using Javascript:

C Programs:

#SkillUpwithGenie #pythonturtle #graphicspython #turtleanimation
#Howtodrawroseinpython
Рекомендации по теме
Комментарии
Автор

import turtle

pat = turtle.Turtle()
scr = turtle.Screen()
scr.bgcolor("Black")
pat.speed(0)

radius = 60
pat.pensize(2)
colour = ["Pink", "Magenta", "Cyan"]
for x in range(12):

pat.color(colour[1])
for i in range (6):
pat.circle(radius)
pat.right(60)
radius = radius + 4

turtle.done()

chocolatecandy