Когда нажимается пробел, я хочу, чтобы значение mario.y_location увеличивалось на 1 в течение 1 секунды. Затем Go возвращается к 0 после того, как эта секунда прошла. Как бы я это сделал?
class mario:
x_location = 0
y_location = 0
z_location = 0
health = 3
start = input('say yes: ').lower()
while start == 'yes':
command = input('').lower()
if command == 'w':
mario.x_location += 1
print(mario.x_location, mario.z_location)
elif command == 's':
mario.x_location -= 1
print(mario.x_location, mario.z_location)
elif command == 'a':
mario.z_location -= 1
print(mario.z_location, mario.x_location)
elif command == 'd':
mario.z_location += 1
print(mario.z_location, mario.x_location)
elif command == ' ':
mario.y_location += 1
print(mario.y_location)
mario.y_location -= 1
print(mario.y_location)