what i know in python is i can write something like this
blabla = Classname().somefunctions()
but in this case both the "np.arange" and "reshape" are functions and it confuses me because "np.arange" is a function and is treated like a class. the question is how is this possible??
import numpy as np
a = np.arange(15).reshape(3, 5)
print(a)
...is treated like a class- can you explain what you mean by that statement?