I'm writing code which requires different types of user input and I want the user to see what to write where but I want the information I'm giving to disappear as soon as the user starts typing for example:
question = "insert number here"
xa = float(input(f"xa ={question} "))
How do I make the question variable disappear when the user starts typing a number?