我一直试图弄清楚这段代码片段两天,但是徒劳无法用它做任何事情。可以解释一下这段代码的功能(代码做了什么以及如何做到这一点) )?另外,我如何在python shell中运行它?我刚刚开始在python中编码。缩进是没用的但是堆栈溢出迫使我在代码中
代码:
import nsetools
import random as r
nse=nsetools.Nse()
print(nse)
nifty_quote = nse.get_index_quote('nifty 50')
print'Percentage change in nifty is:',nifty_quote['pChange'],'%'
pc=nifty_quote['pChange']
编辑:添加了正确的代码格式。