Tuesday, March 22, 2022

Art Using Python

Art using Python



Arts using python 

code ๐Ÿ‘‡

from turtle import*

bgcolor('black')
speed(0)
hideturtle()

for i in range(120):
    color('red')
    circle(i)
    color('orange')
    circle(i*0.8)
    right(3)
    forward(3)
done()

code link ๐Ÿ‘‰ Click here to download
password ๐Ÿ‘‰ itsmejigr08

YOUTUBE VIDEO  WATCH NOW

No comments:

Post a Comment

If you have any doubts, Please let me know.

Radhe-krishna Using Python

 Radhe-Krishna import turtle #keeping the background color dark blue turtle.bgcolor('#ffc233') #Defining title of program turtle.tit...

Popular Posts