标签: python
我有这样的代码
return np.random.choice( self.states, p=[self.transition_prob[current_state][next_state] for next_state in self.states])
[current_state] [next_state]在这里是什么意思?这些列表是否成倍增加?为什么他们在一起时没有标点符号?