+ 1
How to hide the input info?
>>>num = int(input("Enter 0-9")) if num == 5: print("Bingo") else: if num > 5: print("It's too high") else: if num < 5: print("It's too low") Enter 0-9Bingo May I know how to hide the input info "enter 0-9"? Thanks!
2 Respostas
0
leave it blank "" ?
0
use just
num=int(input())