Python Readlines Fin du fichier

with open('somefile') as openfileobject:
    for line in openfileobject:
        do_something()
Arrogant Ant