다음과 같은 에러 발생 시

1
2
3
4
5
6
7
8
9
10
11
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
<ipython-input-54-9b9440005e62> in <module>()
     35 
     36 
---> 37 for i in xrange(num_vectors):
     38   if np.random.random() > 0.5:
     39     x_values.append(np.random.normal(0.4, 0.7))
 
NameError: name 'xrange' is not defined
 
cs


파이썬 2.x 에서 3.x 로 변경되면서 range 로 변경되었음.


+ Recent posts