ich habe hier ein komisches Problem:
Ich habe einen Server mit Python wie folgt:
Python 2.2.3 (#1, Aug 29 2005, 06:50:13)
[GCC 3.3.4 (Trustix)] on linux-i586
und einen weiteren Debian Server mit Python:
Python 2.3.5 (#2, Sep 4 2005, 22:01:42)
[GCC 3.3.5 (Debian 1:3.3.5-13)] on linux2
Wie man sehen kann ist die Debianversion des Programmes aktueller.
Erstelle ich nun auf dem Debian Server ein einfaches Python Programm wie:
Code: Alles auswählen
#!/usr/bin/python
n = 12
i = 1
while i<=12:
print i,"x 8 =", i*8
i=i+1
print "hello world"
File "test.py", line 8
i=i+1
^
SyntaxError: invalid syntax
Auf dem Trustix System gibts keine Probleme. Woran kann das liegen ?