I am working to increment lists in such a way that each item in the list is incremented incrementally, it sounds confusing but its not:
If the user inputs:
list = [1, 2, 3, 4]
I want the output to be:
2, 4, 6, 8
in essence, the first item gets 1 added, the second gets 2 added, the third gets 3, and so on.