Comment créer plusieurs fichiers dans Python en utilisant pour Loop.

for x in range(5):
    file = open("name%d.txt" % x, "w")
    file.write("I am name%d" % x)
    file.close()
Excited Earthworm