0
How to change input name
When I use input(). How do I change what the prompt says?
2 Respostas
+ 6
Samed Karazhayev on Sololearn you cannot change the pop-up input prompt. It appears before your program even runs, and is a fixed part of the batch job that executes your program.
+ 5
Hi Samed Karazhayev ,
You can change what the prompt says by passing your desired text as an argument inside the input() function:
-> input("...text...")