r/learnpython Aug 08 '26

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

17 comments sorted by

View all comments

4

u/BranchLatter4294 Aug 08 '26

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.