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