Wednesday, June 23, 2021

Python 3rd project

Hi Everyone,

For more python project and there code follow  us.....

Welcome to our blog to learn coding and get python codes.

To write python code you install pycharm (its my suggestion) app in your laptop or desktop.






☝️This is our beautiful project image 



This is our beautiful project video☝


this project code is here👇

import turtle

t=turtle.Turtle()
s=turtle.Screen()

s.bgcolor("black")
t.width(2)
t.speed(15)

col=("pink","blue","yellow")

for i in range(300):
t.pencolor(col[i%3])
t.forward(i*4)
t.right(121)

No comments:

Post a Comment

from turtle import * bgcolor('black') pensize(2) speed(11) hideturtle() for i in range(220): color('yellow') circle...