这是我的pythonhello.py
脚本:
def hello(a,b):
print "hello and that's your sum:"
sum=a+b
print sum
import sys
if __name__ == "__main__":
hello(sys.argv[2])
问题是它不能从 windows 命令行提示符运行,我使用了这个命令:
C:\Python27>hello 1 1
但不幸的是它没有用,有人可以帮忙吗?