Answers for "python how to get the last itel in a list"

0

Python "for in" loop to print the last item in the list

>>> total = 0
>>> for n in [5.99, 12.99, 20.99, 129.99]: 
        total += n
        print('Total is now', total)

Total is now 5.99
Total is now 18.98
Total is now 39.97
Total is now 169.96		
>>> total  
169.96
Posted by: Guest on September-05-2021

Code answers related to "python how to get the last itel in a list"

Python Answers by Framework

Browse Popular Code Answers by Language