我正在阅读 Zed Shaw 的“Learning Python the hard way”,我在练习 13,我无法让 python 暂停,所以我可以看到代码的作用。
from sys import argv
script, first, second, third = argv
print "The script is called:", script
print "Your first variable is:", first
print "Your second variable is:", second
print "Your third variable is:", third
raw_input(' Press enter')