你好,我想要做的是這個。得到的值沒有''
from googlefinance import getQuotes
def live_price(symbol):
price = getQuotes(symbol)[0].values()[3]
print price
如果我運行此,它會給我我live_price的FUNC進入某股票的價格。但我想要做一些計算是這樣的:
live_price('A')+live_price('B')
但由於print
不給我的價格作爲計算的東西「輸出」我無法用這些數字。
所以我只是在最後一行嘗試price
而不是print price
。 然後它給我一個特定股票的價格作爲輸出,以便我可以用它來計算。但問題是數字是一個字符串,它不會正確計算。
我應該怎麼做才能將價格作爲輸出,以便我可以使用該數字來計算我想要計算的事物?
返回值,uhm,'return price'? – user3159253
並以float形式包裝價格,如'return float(price)'中所示。 –