File Python

f = open('somefile.txt', 'w')
f.write('Hello, ')
f.write('World!')
f.close()