this post was submitted on 20 May 2024
30 points (89.5% liked)

Python

6684 readers
2 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

πŸ“… Events

PastNovember 2023

October 2023

July 2023

August 2023

September 2023

🐍 Python project:
πŸ’“ Python Community:
✨ Python Ecosystem:
🌌 Fediverse
Communities
Projects
Feeds

founded 2 years ago
MODERATORS
 

Good evening, everyone. I have, but one quick inquiry. What are the best resources in your opinion to learn python by yourself as a complete beginner? Thank you all

you are viewing a single comment's thread
view the rest of the comments
[–] ALERT 2 points 9 months ago (1 children)

I don't believe in theoretical learning. find a practical implication, go through the process of implementing it. break wall after wall. this is the way.

[–] sugar_in_your_tea 1 points 9 months ago (1 children)

I mostly agree, but if OP has little to no programming experience, they should probably read some software engineering books at some point to learn to structure things properly.

But don't do that until your project gets big, like 1000 lines or more than 2 files. Get coding, break stuff, and then find something more structured to fill in the gaps.

[–] ALERT 1 points 9 months ago (1 children)

I cannot agree. books kill motivation. results stimulate motivation.

[–] sugar_in_your_tea 2 points 9 months ago (1 children)

Right, but at some point you need to build the foundation.

That's why I said build something first, and then read a book or two to help structure the application better. Rinse and repeat. If you only build stuff, you'll waste time on debugging spaghetti code and the project will quickly become more frustrating to work on.

[–] ALERT 1 points 9 months ago

well... yes. I agree.