0
Little help please
when I use input ("entry age:") for example the output is : entry age: (the number the user entered) how can I keep the (entry age) sentence without it being displayed in the output.
2 Respostas
+ 1
clear the input("")
or if you want it to show text but not show it with output you can do something like:
import os
a = input("enter age")
os.system("cls")
print(a)
+ 1
input("")