Showing posts with label #India. Show all posts
Showing posts with label #India. Show all posts

Monday, June 21, 2021

PYTHON 1st PROJECT

 Hi Everyone,

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

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

this is project image☝


This is☝ our first python project. Amazing beautyfull design  by python laungauge.

This project source code here 👇



import turtle
turtle.bgcolor("black")
turtle.pensize(2)
turtle.speed(0)

for i in range(6):
for colours in ["red", "magenta", "blue","grey","yellow","white","orange"]:
turtle.color(colours)
turtle.circle(100)
turtle.left(10)
turtle.done
turtle.hideturtle()

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