← Problems

1. Hello Tensor

EasyNumPyArrays

Create a 1D NumPy array containing the integers 11 through 55 and return it.

Example

Output: array([1, 2, 3, 4, 5])

Constraints

  • Use NumPy — do not return a plain Python list.
Python 3
⌘ + Enter
Run your code to see results
Ctrl + Enter