How can I create a numpy array which has values in a specific range. For instance only from 2 to 10! I know that np.arrange(10) will create an array with 10 values from 0 to 9 but not sure how to indicate that I want it to have values in a specific range. Any idea? Thanks in advance
As others and the documentation says
np.arange(2,11)
Here is a working example https://repl.it/@Sudakatux/simplenumpy
Here are the docs: https://docs.scipy.org/doc/numpy/reference/generated/numpy.arange.html
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With