Hi i want to make fun in python turtle that will measure time from start of program to the moment that user will click on space my code looks like this and i have problem with moment when i calculate the time
import turtle
import time
screen = turtle.Screen()
screen.setup(600,600)
t = turtle.Turtle('turtle')
t.speed(3)
time = time.time()
def prawy():
t.setheading(0)
t.fd(50)
def lewo():
t.setheading(180)
t.fd(50)
def gora():
t.setheading(90)
t.fd(50)
def dol():
t.setheading(270)
t.fd(50)
def spac(x):
print(round(time.time()-x,2))
turtle.listen()
turtle.onkey(prawy, 'Right')
turtle.onkey(lewo, 'Left')
turtle.onkey(gora, 'Up')
turtle.onkey(dol, 'Down')
turtle.onkeypress(spac, 'space')
turtle.mainloop()
i know i have to put the time from begining to my fun but i have no idea how THX for support
As far as I can tell there's no variable with the name x declared in your code.
Furthermore you should not name a variable like a module that you are importing, thus change the variable name of time to t1.
Also change the function spac(x) to:
take care