Python Écrivez le fichier texte sur la ligne suivante

file = open("sample.txt", "w")
file.write("Hello\n")
file.write("World\n")
file.close()
Unusual Unicorn