How to read input until EOF in python?

Revision en1, by rgkbitw, 2017-09-01 15:45:26

I came across this problem in UVa OJ. 272-Text Quotes

Well, the problem is quite trivial. But the thing is I am not able to read the input. The input is provided in the form of text lines and end of input is indicated by EOF.

In C/C++ this can be done by running a while loop:

  while( scanf("%s",&s)!=EOF ) { //do something } 

How can this be done in python .?
I have searched the web but I did not find any satisfactory answer.

Please Help Me!

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en1 English rgkbitw 2017-09-01 15:45:26 664 Initial revision (published)