Is it possible for python to accept input as follows:
Folder name: Download
But instead of typing “Download,” the user already exists as the initial value. If the user wants to edit it as “Downloads”, all he needs to do is add 's' and press enter.
Using the normal input command:
folder=input('Folder name: ')
all i can get is an empty prompt:
Folder name:
Is there an easy way to do this that I am missing?
python input
kircheis Mar 28 '10 at 13:51 2010-03-28 13:51
source share