“Python Read File del mismo directorio” Código de respuesta

PYTHON ABRIR ARRIGA MISMA CARPEER

import os
with open(os.path.join(sys.path[0], "my_file.txt"), "r") as f:
    print(f.read())
Sparkling Spider

Python Read File del mismo directorio

f = open(os.path.join(sys.path[0], "test.html"), "r")
print(f.read())
f.close()
Sachin

Respuestas similares a “Python Read File del mismo directorio”

Preguntas similares a “Python Read File del mismo directorio”

Más respuestas relacionadas con “Python Read File del mismo directorio” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código