Skip to content

Instantly share code, notes, and snippets.

@wesleimp
Created August 20, 2021 12:25
Show Gist options
  • Save wesleimp/28a6399793bfcba48e03c1ee2f474969 to your computer and use it in GitHub Desktop.
Save wesleimp/28a6399793bfcba48e03c1ee2f474969 to your computer and use it in GitHub Desktop.
# Draw the COVID-19 virus
from turtle import *
color("green")
bgcolor("black")
speed(11)
hideturtle()
b = 0
while b < 200:
right(b)
forward(b * 3)
b = b + 1
done()
@wesleimp
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment