Skip to content

Instantly share code, notes, and snippets.

View iagosousadev's full-sized avatar

Iago Sousa iagosousadev

View GitHub Profile
archive = raw_input("Name of the archive: ")
text = raw_input("Type new text here: ")
t = open("%s.txt"%archive, "w")
t.write("%s"%text)
t.close()