Python Summary-Final Exam
Python Summary-Final Exam
def get_total(value_list):
total = 0
for num in value_list:
total += num
return total
main()
End Unit 7
Method Description
Method Description
❖ Example:
'17;92;81;12;46;5'
This string contains the tokens 17, 92, 81, 12, 46, and 5
The delimiter is the ; character
End Unit 8