Dateien erzeugen/öffnen/lesen


#!/usr/bin/python
filehandle = open("test123","w")
print filehandle
filehandle.write("test123")
filehandle.close