1
我是一個Python新手。試圖通過我自己學習。 以下是我的python程序。當我試圖在Powershell中運行它時。它只是卡住了。 它永遠不會顯示任何輸出。我在屏幕上看不到任何錯誤。python腳本不能在PowerShell中工作
from sys import argv
script, name = argv
print "this is: ", script
print "my name is: ", name
age = raw_input("what is your age: ")
height = raw_input("what is your height")
print "so your name is %s, your age is %s and height is %r" %(name, age, height)
感謝