我正在通過許多帖子尋找解決方案,但也許我正在尋找錯誤的短語。我是新來的蟒蛇,我的代碼的問題如下:循環中的動態變量python
from yahoo_finance import Share
for line in open('fcts.txt'):
yahoo = Share('YHOO')
print (yahoo +'.' + line)
它應該基本上做到以下但裏面fcts.txt
每一個功能:
from yahoo_finance import Share
yahoo = Share('YHOO')
print (yahoo.get_open())
而fcts.txt
包含像
get_open()
get_change()
...
謝謝 Stefan
我不明白你的問題。 fcts.txt中有什麼? Python的功能? – GPhilo
「共享」實例的Python方法的名稱。 – Alfe
爲什麼在你的txt文件中有一些奇怪的半碼......?看起來不太理智。 – deceze