Assignment 10 – list creation

Due Friday February 8 @ 2 PM


  • Prompt and get as input a list of integer numbers
  • Convert the gotten input into a list of numeric strings
  • By accumulation, convert the numeric strings one-by-one to get a list of integers (a loop is needed)
  • By accumulation, get the total of the integer list values one-by-one (a loop is needed)
  • Print the integer list
  • Print the total

Enter a list of integers: 3 5 9 13 11 2

[3, 5, 9, 13, 11, 2]

43

Enter a list of integers: 2 -7 9 88

[2, -7, 9, 88]

92