Posts

Showing posts from October 8, 2022

New Post

Python Turtle Graphics || STAR SPIRAL DESIGN 0 7|| ~xRay Pixy

Image
SOURCE CODE import turtle r = turtle.Turtle() r = turtle.Pen() r.width(4) r.speed(50) turtle.bgcolor('black') c = ['white','red','blue','orange'] for i in range (700):     r.pencolor(c[i%4])     r.left(i)     r.right(100) r.done()
More posts