2
votes

I can print out the range multiplied by some value:

enter image description here

Why can't I store the resulting range in the variable?

1

1 Answers

1
votes

The range is stored in terms of its start, end, and increment values; it's not a vector, but you want to treat it as one. You can get what you want like this:

enter image description here