33 lines
809 B
Python
33 lines
809 B
Python
|
# Abrir archivo
|
||
|
arch = open('./python_subprocess_bash', 'r')
|
||
|
|
||
|
# Leer contenido
|
||
|
arch.read()
|
||
|
|
||
|
# Cerrar el arrchivo
|
||
|
arch.close()
|
||
|
|
||
|
|
||
|
# Context manager ( en este caso with abre y cierra el archivo
|
||
|
# read() lee todo el contenido del archivo
|
||
|
|
||
|
with open('./python_subprocess_bash', 'r') as archivo:
|
||
|
print(archivo.read())
|
||
|
|
||
|
# Lee por linea
|
||
|
with open('./python_subprocess_bash', 'r') as archivo:
|
||
|
print(archivo.readline())
|
||
|
|
||
|
# Genera una lista con las lineas del archivo
|
||
|
with open('./python_subprocess_bash', 'r') as archivo:
|
||
|
print(archivo.readlines())
|
||
|
|
||
|
# Genera una lista con las lineas del archivo
|
||
|
with open('./python_subprocess_bash', 'r') as archivo:
|
||
|
print(list(archivo))
|
||
|
|
||
|
# For recorre linea a linea
|
||
|
with open('./python_subprocess_bash', 'r') as archivo:
|
||
|
for linea in archivo:
|
||
|
print(linea)
|