|
|
back to boardin python how to stop taking input the programme just keeps taking input. how to make it stop taking input and print result Re: in python how to stop taking input Posted by candide 10 May 2013 02:52 You can get the whole input data as a big string with stdin.read() [don't forget to import stdin from the sys module]. |
|
|