pimento[w05]$ python3 askList.py pimento[w05]$ python3 askList.py pimento[w05]$ python3 askList.py Enter a string: bee Enter a string: bop Enter a string: cow Enter a string: boy ['bee', 'bop', 'cow', 'boy'] pimento[w05]$ python3 sumList.py [27, 5, 8, 11, 3, 1, 19, 4, 10, 21] pimento[w05]$ python3 sumList.py [6, 26, 9, 13, 18, 10, 27, 19, 8, 25] Traceback (most recent call last): File "sumList.py", line 22, in main() File "sumList.py", line 18, in main total = total + values TypeError: unsupported operand type(s) for +: 'int' and 'list' pimento[w05]$ python3 sumList.py [9, 5, 24, 28, 27, 17, 16, 22, 10, 18] The sum is 176 pimento[w05]$ python3 sumList.py [1, 0, 8, 2, 11, 27, 28, 17, 6, 22] The sum is 122 pimento[w05]$ python3 sumList.py [14, 13, 7, 27, 19, 21, 9, 28, 12, 25] The sum is 175 pimento[w05]$ atom square.py pimento[w05]$ python3 square.py Before: 2 After: 2 pimento[w05]$ python3 squareList.py Before: [0, 1, 2, 3] After: [0, 1, 4, 9] pimento[w05]$ atom squareList.py pimento[w05]$ atom squareList.py pimento[w05]$ python3 squareList.py Before: [0, 1, 2, 3] After: [0, 1, 4, 9] pimento[w05]$ python3 squareList.py Before: [0, 1, 2, 3] After: [0, 1, 4, 9] After: [0, 1, 16, 81] After: [0, 1, 256, 6561] pimento[w05]$