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

Wednesday, June 30, 2021

Draw VIRUS STRUCTURE in python

 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.And you can also write python codes in mobile phone. If you
like write codes in mobile phone you should install "PYDROIDE 3"app
(https://play.google.com/store/apps/details?id=ru.iiec.pydroid3)pydroide 3


project image

this is our project image☝



This is our project video☝

This is our project code👇


import turtle

a=0
b=0
turtle.bgcolor("black")
turtle.speed(0)
turtle.pencolor("red")
turtle.penup()
turtle.goto(0,200)
turtle.pendown()

while True:
    turtle.forward(a)
    turtle.right(b)
    a+=3
    b+=1
    if b==200:
        break

turtle.done()

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