Answers for "how to print last in for loop python"

1

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
1

python print last 3

message = iloveyouchina
#get last x words
#for example x = 3
print(message[-3:]
Posted by: Guest on July-09-2020

Code answers related to "how to print last in for loop python"

Python Answers by Framework

Browse Popular Code Answers by Language