Skip to content

Commit

Permalink
Update scribbler.py
Browse files Browse the repository at this point in the history
minor changes
  • Loading branch information
bigbuny authored Feb 22, 2024
1 parent df557a1 commit 233db4c
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions scribbler.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,10 @@ def draw_geometry(self, m):
self.clear_screen()

def main():
print('Start? (y): ',end='')
start = input().lower()
if start == 'y':
while True:
art_turtle = ArtisticTurtle()
art_turtle.draw_geometry(random.randint(50,100))
else:
pass
while True:
art_turtle = ArtisticTurtle()
art_turtle.draw_geometry(random.randint(50,100))

if __name__ == "__main__":
main()

0 comments on commit 233db4c

Please sign in to comment.