こんにちは、私は Python を初めて使用し、現在次のスクリプトをコピーしています。
# filename is printer.py
import sys
for arg in sys.argv:
print arg # the zeroth element is the module name
raw_input("press any key") # a trick to keep the python console open
引数の後にモジュール名を取得しようとしています。しかし、このコードを実行すると、次のエラーが表示されます。
U:\printer.py
File "U:\printer.py", line 6
print arg # zeroth element is the module name
^
SyntaxError: Invalid syntax
ここで何が問題なのか誰か知っていますか?私はPython 3.2を使用しています