draw loop triangles with python turtle | python turtle graphics tutorial#15 | draw designs in python
---------------------------------------------------------------------------------------------------------------------------------
source code:
import turtle
turtle.speed(0)
turtle.bgcolor('black')
turtle.pencolor('magenta')
turtle.pensize(2)
def triangle():
turtle.left(60)
turtle.forward(250)
turtle.right(125)
turtle.forward(230)
turtle.right(115)
turtle.forward(200)
for i in range(42):
triangle()
turtle.left(69)
turtle.done()
-----------------------------------------------------------------------------------------------------------------------------
#python turtle projects
#python turtle art
#python turtle tutorial
#python graphics
draw loop triangles with python turtle | python turtle graphics tutorial#15 | draw designs in python ---------------------------------------------------------------------------------------------------------------------------------source code:import turtleturtle.speed(0)turtle.bgcolor('black')turtle.pencolor('magenta')turtle.pensize(2)def triangle():turtle.left(60)turtle.forward(250)turtle.right(125)turtle.forward(230)turtle.right(115)turtle.forward(200)for i in range(42):triangle()turtle.left(69)turtle.done()-----------------------------------------------------------------------------------------------------------------------------#python turtle projects#python turtle art#python turtle tutorial#python graphics
2149
draw loop triangles with python turtle | python turtle graphics tutorial#15 | draw designs in python
---------------------------------------------------------------------------------------------------------------------------------
source code:
import turtle
turtle.speed(0)
turtle.bgcolor('black')
turtle.pencolor('magenta')
turtle.pensize(2)
def triangle():
turtle.left(60)
turtle.forward(250)
turtle.right(125)
turtle.forward(230)
turtle.right(115)
turtle.forward(200)
for i in range(42):
triangle()
turtle.left(69)
turtle.done()
-----------------------------------------------------------------------------------------------------------------------------
#python turtle projects
#python turtle art
#python turtle tutorial
#python graphics