meins:python:parameteruebergabe
Parameterübergabe mit argv
http://learnpythonthehardway.org/book/ex13.html
from sys import argv script, first, second, third = argv print "The script is called:", script print "Your first variable is:", first print "Your second variable is:", second print "Your third variable is:", third
Das Script *MUSS* drei Argumente haben. Mit dem Scriptnamen sind es dann vier :)
> python script.py argument1 argument2 argument3
/www/htdocs/v033852/vor/data/pages/meins/python/parameteruebergabe.txt · Zuletzt geändert: Sunday, 05. Jun 2016 12:28 von Ivo Schwalbe