In this course, you learned how to write loops like a Python developer. Keep in mind that writing C-style loops is considered not Pythonic. If possible, try to avoid managing loop indexes and stop conditions manually.
Also remember that for
loops in Python are like “for each” loops in other languages, so you can use them to iterate over a container or sequence directly.
Congratulations, you made it to the end of the course! What’s your #1 takeaway or favorite thing you learned? How are you going to put your newfound skills to use? Leave a comment in the discussion section and let us know.
Stephen Paden on July 16, 2019
Very informative as usual!