How to see only a part of an array in expression view?
Hello!
My case is:
I have an array of 100 items, but now I know only the first 10 are used so I'd like to watch only the first ten variables.
I know I can list the individual array items one after another (e.g, arr[0], arr[1] and so on to arr[9]), but I was wondering if there's a better way to do it.
I imagined something like
arr[0-10]
arr[:10]
arr[0], 10
arr, 10
Thanks!
