Amazing art creating using python code in phone | By High Tech 7

 Amazing art creation using Python code on phone | By High Tech 7

Code- 

from turtle import *

speed(0)
bgcolor('black')
color('aqua')

for i in range(160):
    rt(i)
    circle(150, i)
    fd(i)
    rt(90)

hideturtle()
done()


Output -