Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to only print final iteration of a for loop pyhton

prices = [10, 20, 30]
total = 0
for price in prices:
    total += price
	#print(f'total: {total}') will give all iterations in order
print(f'total: {total}') #make sure to print outside of loop for 
#only final iteration to print
 
PREVIOUS NEXT
Tagged: #print #final #iteration #loop #pyhton
ADD COMMENT
Topic
Name
5+3 =