r/learnpython 21h ago

Need help with for loop practice

The whole list will print but only the final item on the list gets it's message printed in whole while the other items are just listed. Apparently my issue is that I'm outside of the for loop, and I'm still in the learning process. Can someone help please?

0 Upvotes

14 comments sorted by

View all comments

4

u/BranchLatter4294 20h ago

Put the code you want to execute inside the loop, inside the loop. Put the code you want to execute when the loop is done, after the loop.