Prerrequisitos: Programación Turtle en Python
Un espirógrafo es una figura geométrica muy interesante que a menudo es simétrica en ambos ejes. Aquí, hemos usado una gama de colores para dibujar círculos, puede usar su combinación según su elección de color.
A continuación se muestra la implementación.
Python3
# Import the turtle library for # drawing the required curve import turtle as tt # Set the background color as black, # pensize as 2 and speed of drawing # curve as 10(relative) tt.bgcolor('black') tt.pensize(2) tt.speed(10) # Iterate six times in total for i in range(6): # Choose your color combination for color in ('red', 'magenta', 'blue', 'cyan', 'green', 'white', 'yellow'): tt.color(color) # Draw a circle of chosen size, 100 here tt.circle(100) # Move 10 pixels left to draw another circle tt.left(10) # Hide the cursor(or turtle) which drew the circle tt.hideturtle()
Producción:
Publicación traducida automáticamente
Artículo escrito por avanishcodes y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA