Hello, using Python is it possible to have a changing output line, without it printing it on a new line, if that makes sense
So for example, I'm printing out three variable from an accelerometer, Roll, Pitch and Yaw, I'd like the 3 variables to be constantly updating, however I don't want a new line printed each time they update
Roll: 44.03 Pitch 0.00 Yaw 78.44
So I'd like the numbers to update themselves with Roll, Pitch and Yaw being printed again on a new line
I hope this make sense, thanks!