Created
August 20, 2021 12:25
-
-
Save wesleimp/28a6399793bfcba48e03c1ee2f474969 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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() |
Author
wesleimp
commented
Aug 20, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment