Create Virus using python turtle #shorts #coding #programming

preview_player
Показать описание

If you found this video useful please give it a thumbs up and subscribe to my channel! and If you have any questions regarding this video, please ask them in the comment section. thanks for watching! :)

Follow Us:

#shorts #coding #programming

DISCLOSURE: This video and description might contain affiliate links, which means that if you click on one of the product links, I’ll receive a small commission. This help supports the channel and allows us to continue to make videos like this. Thank you for the support! [Intro Song Credit]
Valence - Infinite [NCS Release]
Рекомендации по теме
Комментарии
Автор

U can do the same in 10 lines
Like this
From turtle import*
Bgcolor('black')
Color ('green')
Speed (11)
Hideturtle()
B = p
While b < 200:
Right (b)
Forward (b * 3)
B += 1

Jake-Waegebaert
Автор

I thought you Will make a Malware in python because you know Malware = virus

KakMumu
Автор

Instead copy this all and paste this in pydroid 3
import turtle
a=turtle.Turtle()
a.color('yellow')
a.speed(0)
a.hideturtle()

s=turtle.Screen()
s.bgcolor('black')
for x in range(200):
a.forward (x)
a.left(x-1)
turtle. done()
Copy - paste this

mbdrawing
Автор

Easy way

Import turtle as t
T.bgcolor('black')
T.speed(0)
T.pencolor('red')
For i in range(240):
T.Fd(i*2)
T.rt(i)
T.done()

dhavalchoudhary
Автор

I make this shorter and cooler
Here

from turtle import*
import colorsys
speed(0)
shape('turtle')
colors = ['blue', 'cyan', 'white']
bgcolor('black')
pl = 10
st = 3
while True:
for i in range(90):
pencolor(colors[i % 3])
forward(pl)
right(st)
pl+=6
st+=1

Pythonister
Автор

How about Computer Virus not drawing ?

AstronomyAstropy
Автор

I find this method write casual turtle thing hahahah

feweir
Автор

how can this be a virus? can't you just close it? sorry if i am weong

FirewolfCz
Автор

Agar koi virus bana bhi lo to usko network me run kaise karwaoge? 😂

sunilkumar-pegk
Автор

import turtle
screen = turtle.screen()
screen.setup(500, 600, startx=0, starty=100)
t =turtle.turtle()
s = turtle.screen()
s.bgcolor("black")
t.pencolor("red")
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.done()

Ernesto-rpls
Автор

How can I download this program, any body know comment me plz

NoBODY-NoBuddy
Автор

if b=210:
^
SyntaxError: invalid syntax

piyankabhattacharjee
Автор

I'm bouta patch this in antivirus 2.0;) jk it's a renderer, no virus here;)

abandonedcrack
Автор

where we write these codes???? plzzz tell me I am a beginner

smartgamers
Автор

How is this a virus it's literally just random pattern 🗿

PAKISTAN_GAMER
Автор

this is not a virus its turtle module pattern

nitinsirohi