Wednesday, 21 August 2013

different between pyscripter and python shell?

different between pyscripter and python shell?

when I wrote this program in python shell i could see the result easily:
import numpy as np
a = np.array([0,1,2,3])
a
and the output is array([0,1,2,3]) but when I do it in pyscripter and I
run the program nothing happen!I should to write it in this form
print(a)and the I saw the [0,1,2,3] what's the problem?

No comments:

Post a Comment