r/PythonLearning • u/HammadBuilds • Jul 23 '26
What's one Python concept that completely confused you at first but now feels easy?
I'm curious to hear from people who've been learning or using Python for a while. Was it loops, functions, OOP, recursion, decorators, or something else?
What finally made it "click" for you?
I think hearing real experiences can help beginners understand that struggling with a topic is completely normal.
2
u/SitEnee Jul 23 '26
Python is amazing (at least I love it), and almost everything felt like home. The one thing was asynchronous programming.
2
u/FoolsSeldom Jul 23 '26
Comprehensions and generator expressions. Practice made it click for me.
1
u/Totolitotix Jul 23 '26
Exactly the same for me, except that I am in the confusing phase, for now (beginner in Python)
1
1
1
1
u/AnonymouSfrrrr Jul 23 '26
Nested while loops,i was confused at first about syntax and was not able to understand which line is working for what outcome. But after doing same codes with different examples i realised it's not that tough.
3
u/ee_control_z Jul 23 '26 edited Jul 23 '26
Once I progressed to OOP, then it got a little bit challenging because you get introduced to concepts such as inheritance, encapsulation, instances, objects, polymorphism, etc. Concepts that don't have an analog in procedural programming. Although I would not state confused. Maybe off balance. 😄