Draw Unlimited Colors Hexagons | Full Python Code ||

Publié le: 26 novembre 2022
sur la chaîne: TechniqueCoding
92
3

Code :
import turtle
from random import randint

x=20

ga=20

turtle.speed(100)

turtle.colormode(255)

def move(l,a):
turtle.right(a)
turtle.forward(l)

def hex():
turtle.pendown()
turtle.color(randint(0,255),randint(0,255),randint(0,255))
turtle.begin_fill()
for i in range(6):
move(x,-60)
turtle.end_fill()
turtle.penup()

turtle.penup()
for an in range(ga):
if an==0:
hex()
move(x,-60)
move(x,-60)
move(x,-60)
move(0,180)
for i in range(6):
move(0,60)
for j in range(an+1):
hex()
move(x,-60)
move(x,60)
move(-x,0)
move(-x,60)
move(x,-120)
move(0,60)

turtle.exitonclick()

#colorhexagons #pythonturtle #codingtechnique #100pythonpracticecode


Sur cette page du site, vous pouvez voir la vidéo en ligne Draw Unlimited Colors Hexagons | Full Python Code || durée heure minute seconde en bonne qualité , qui a été Téléchargé par l'utilisateur TechniqueCoding 26 novembre 2022, Partagez le lien avec vos amis et connaissances, sur youtube cette vidéo a déjà été regardée 92 fois et il a aimé 3 téléspectateurs. Bon visionnage!