I've got a script that pulls text from a Web server. I want to give the user (me) an opportunity to edit that text so they can select which part to keep. Ideally, it would be something like this:
editedText= raw_input(defaultText)
So, defaultText
is printed, the user edits it and presses enter, and the text as they've edited is assigned to editedText
.
Is there a way to do this?
Thanks!