import os # 1 - Importação do Texto with open(os.path.join("data", "texto.txt"), "r", encoding="utf-8") as file: texto = file.read() print(texto)