Learn
Advanced Topics in Python
Stride Length
A positive stride length traverses the list from left to right, and a negative one traverses the list from right to left.
Further, a stride length of 1 traverses the list “by ones,” a stride length of 2 traverses the list “by twos,” and so on.
Instructions
1.
Create a variable, backwards_by_tens
, and set it equal to the result of going backwards through to_one_hundred
by tens. Go ahead and print backwards_by_tens
to the console.