[Python] I want to detect the input value but I don't want to show the entire input entering question in the results. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

[Python] I want to detect the input value but I don't want to show the entire input entering question in the results.

I would like to receive my input values by following functions: abc = input("Enter your value: ") and I want to use the entered value for the next procedure in the program. But when I want to show the output I expect the outcomes as the example follows: Example : entering >>> 5555555 Output >>> 5555555 I don't expect the output of >>> Enter your value: 5555555 So how can I resolved this problem?

22nd Jul 2019, 9:30 AM
Nutchydino
1 Answer
+ 3
Try this abc = input() print(abc)
22nd Jul 2019, 10:27 AM
Rik Wittkopp
Rik Wittkopp - avatar