Input issue | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Input issue

So im in begginer course it says you can put strings in an input to tell the user what to input Code Alert = input("type alarm here: ") Print ( "*** "+ alert + " ***") Output is *** type alarm here: hello *** What would be the correct way to prompt user input without is showing in the output text

17th Oct 2021, 11:44 PM
Scott Fellman
Scott Fellman - avatar
1 Answer
0
alert=input("*** type alarm is here: ") print (alert, " ***")
18th Oct 2021, 1:10 AM
Atul [Inactive]