Python, wenn Datei vorhanden ist, append sonst erstellen

with open(filename, 'a+') as f:
    f.write(...)
Mike Rocket