Ich habe dieses Script das 2 Zahlen addiert die ich als Parameter an das Script übergeben habe.
import sys
a = sys.argv[1]
b = sys.argv[2]
c = a + b
print(c)
Wenn ich das Script so aufrufe
python myscript.py 2 3
sollte das Ergebnis 5 sein, es ist aber 23.
PS C:\users\dan\desktop> python text.py 2 3
23
Ich habe Python schon 3 mal deinstalliert und neu installiert.