Code virus in Python 3

Code virus in Python 3

·

1 min read

Disclamer ⚠ This is not a literal virus that harms or infects any computers!

We will be using the turtle to achieve our goal!

If you want to get a quick glance of code and the outcome :

                     **YOUTUBE WALKTHROUGH:**

youtu.be/DDEktg_FM_A

The code goes like this:

from turtle import *
import turtle

screen = turtle.Screen()

  #set size:



  #remove close,minimaze,maximaze buttons:
canvas = screen.getcanvas()
root = canvas.winfo_toplevel()
root.overrideredirect(1)


speed (10)
color("cyan")
bgcolor("black")
hideturtle()
b = 0
while b < 200 :
    right (b)
    forward (b * 3)
    b = b + 1

Enjoy!