[Solved] I need to make a time based scoreboard work better [closed]

Here’s something: import turtle delay = 0.1 # For the mainloop count = 0 # To track when a second past score = 0 # The score count pen = turtle.Turtle(visible=False) # The turtle which will write the score pen.penup() pen.goto(0,200) pen.write(‘Score: {}’.format(score),align=’center’,font=(‘Arial’,10,’bold’)) while True: # Main game loop time.sleep(delay) # 1 frame per 0.1 … Read more

[Solved] Python-Turtle: Turning list of Strings into a working code

#example of the list being used conundrum = [‘black pen’, ‘lift pen’, [‘go to’, -98, 132], [‘draw dot’, 10], ‘lift pen’, [‘go to’, -120, 137], [‘draw dot’, 10], ‘lift pen’, ‘thick lines’, [‘go to’, -55, 80], ‘lower pen’] #Import everything from the turtle library from turtle import * #Define the draw function def draw(test): home() … Read more