problem

Chris Angelico rosuav at gmail.com
Thu Jan 14 16:10:09 EST 2016


On Fri, Jan 15, 2016 at 6:01 AM, Irmen de Jong <irmen.NOSPAM at xs4all.nl> wrote:
> Either put something like this at the end of your python scripts, to keep the console open:
>
> raw_input("press enter to exit...")
>
>

Small qualification: This is 3.5, so you should use input instead of raw_input.

input("Press enter to exit...")

ChrisA



More information about the Python-list mailing list