diff --git a/mandala/mandala_python-your_Carbonilla_Gene Caleb.py b/mandala/mandala_python-your_Carbonilla_Gene Caleb.py new file mode 100644 index 0000000..a383f17 --- /dev/null +++ b/mandala/mandala_python-your_Carbonilla_Gene Caleb.py @@ -0,0 +1,28 @@ +from turtle import * + +from random import randint + +speed(0) + +bgcolor('black') + +x = 1 + +while x < 500: + + r = randint(0,255) + g = randint(0,255) + b = randint(0,255) + + colormode(255) + pencolor(r,g,b) + + fd(50 + x) + rt(90.911) + + + x = x+1 + +exitonclick() + +#crdts https://www.instructables.com/