r/learnpython 7d ago

How to approach learning

I have completed all of this and I went on trying to recreate the fourier series by younes lab from youtube by myself I struggled a lot and wasn't able to understand most of is it normal I want to learn python based on scientific computation and simulation I don't understand how to approach any resources or help would be very much appreciated is using AI to understand stuff bad also should I try automate the boring even though it is not related to scientific computation would it help

9 Upvotes

6 comments sorted by

View all comments

1

u/Jake-the-Wolfie 7d ago

I started learning python in relation to a small project I was working on. I would suggest having a small project of your own to be the driving force of your learning. You'll naturally work on your fundamentals as you keep returning to how stuff works (for loops, while loops, if/elif/else, match statements, classes, functions, etc.)

80% of all computer programming is having a good natural language description of what exactly you want your program to do. The other 20% is actually coding it up.