我使用的是ystockquote,可以找到here。基本上,我有一个包含我所有股票符号的文件,然后我用python将其笔下并显示每只股票的价格。以下是我目前为止的代码:import ystockquote
def intro():
# Here you enter the name of your file
watchlist = raw_input(">")
open_watchlist = open(watchlist)
print "What next"
next = raw_input(">")
if next == "view":
for line in open_watchlist:
quote = ystockquote.get_price(line)
print "%s: %s" % (line, quote)
intro()
这会产生以下错误:
^{pr2}$
有什么办法让它显示符号和价格吗?谢谢。在