====== Umgang mit Dateien ====== http://learnpythonthehardway.org/book/ex15.html from sys import argv # Aufruf mit 'python script.py textdatei.txt' script, filename = argv # Datei öffnen txt = open(filename) # Inhalt der Datei ausgeben print txt.read()