5 lines
91 B
Python
5 lines
91 B
Python
fil = open('filtest.txt', 'w')
|
|
fil.write("Hejsan svejsan\nHur är läget?\n")
|
|
fil.close()
|
|
|