readln() until EOF

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • korean_dave

    readln() until EOF

    a = open("Thefile.t xt","r")

    while ?????:
    result = a.readln()

    what do i put in ???? if i want to keep reading line by line until i
    reach the end of the file?

    I don't want to break the loop if there is a blank line, because there
    will be.

    Ex. of a file:

    map1
    result1

    map2
    result 2

    map3
    result3
    comments

    thanks...
Working...