Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Complétez le code pour écrire le texte « Hello » dans le fichier test.txt :
with open("test.txt", "w") as f: f.write("Hello")
open("test.txt", "w") : test.write("Hello")
file = "./test.txt" file.write("hello", "w") file.close()
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!