I\'ve recently recreated a version of Lunar Lander (you know, the old retro game) in Python 3 and Pygame: my lander moves (̀̀̀rect.move) each frame along the y
rect.move
I haven't tested it myself so I am sorry if this does not work but I think python is taking the number as a string so instead of int(variable)
int(variable)
You should do float(variable)
float(variable)