[ create a new paste ] login | about

Link: http://codepad.org/g6Qqv5eM    [ raw code | output | fork ]

thornpyros - Python, pasted on Feb 7:
1
2
3
4
5
6
7
import random as np
np.s = 3
print "np.s is", np.s
import random as numpy
print "numpy.s is ", numpy.s
import random as new_numpy
print "new_numpy.s is ", new_numpy.s


Output:
1
2
3
np.s is 3
numpy.s is  3
new_numpy.s is  3


Create a new paste based on this one


Comments: