como leer lineas de un archivo de texto en python

f = open("archivo.txt", "r")
for linea in f:
    print(linea)
f.close()
Splendid Seahorse