Python ouvert
with open("filename.txt", "r") as file:
print(file.read())
file.close()
Chinedu Francis Ozurumba
with open("filename.txt", "r") as file:
print(file.read())
file.close()