This is actually a question I've had since I first started learning Python a year ago. And it is the following: How can I call the input function and have the users type their entry at some point other than the end of the prompt?
To clarify, say I had the string
'Enter file size: MB'
And when called I would want the text to be inserted like so:
Enter file size: 62 MB
Is it possible to recreate this behavior in a function call like the following?
input('Enter file size: {} MB')
# where Python would interpret
# the {} as the position to input text

