Create Virus using Python🔥 #shorts #python #virus

preview_player
Показать описание
Virus using python turtle
Subscribe for more videos and press 🔔

#shorts #python #virus #pythonturtle

@gilesmcmullen
@CodeWithChris
@LearnCodingOfficial
@programmingwithmosh
@CodeWithHarry
@ApnaCollegeOfficial
@gilesmcmullen
@CodingNinjasIndia
Рекомендации по теме
Комментарии
Автор

source code-
import turtle
screen=turtle.Screen()
screen.setup(700, 600, startx=0, starty=100)
t=turtle.Turtle()
s=turtle.Screen()
s.bgcolor("black")
t.pencolor("cyan")
a=0
b=0
t.speed(0)
t.penup()
t.goto(0, 200)
t.pendown()
while(True):
t.forward(a)
t.right(b)
a+=3
b+=1
if b==210:
break
t.hideturtle()

turtle.down()

codestars