I'm trying to get a grip on Python, but I'm having a hard time understanding lambda functions and any type of loops. I'd love some tips on how to learn these concepts more effectively.
1 Answer
It sounds like you might want to slow down a bit with your learning. Loops are pretty basic stuff in Python, usually covered in the first week. Make sure you're really comfortable with function definitions before you try out lambdas. A lot of folks jump around between tutorials, but that's not really effective. Grab a solid course and push through it, taking notes and practicing everything along the way. Try not to skip parts, and if something feels easy, make sure you can actually do the exercises before moving on. It might take time, but it's worth it! Here are a couple of great courses to consider: [programming-25.mooc.fi](https://programming-25.mooc.fi/) and [CS50's Python Introduction](https://pll.harvard.edu/course/cs50s-introduction-programming-python). If you still get stuck, just ask for help!
Thanks, I really appreciate the suggestions! I’ll check those courses out.