Chapter 8: Exercise 1
Description: Making a function that takes a string as an argument and making it appear backwards one letter per line.
Code:
Screenshot of Code: <<<Python 3.3.2
Chapter 10: Exercise 3
Description: Take a list and make it so that the program will output a cumulative sum meaning from this example>>>>[1, 2, 3] the output will be [1, 3, 6]
Code: