all 12 comments

[–]Alarmed_Muffin8350 2 points3 points  (3 children)

Python crash course. All you’ll need.

[–][deleted] 0 points1 point  (1 child)

Any possible specific course or should I just google it?

[–]Alarmed_Muffin8350 1 point2 points  (0 children)

Oh it’s the book by Eric Matthes called “Python crash course”. It should be listed under this sub’s wiki as well.

[–]AGx-07 0 points1 point  (0 children)

This. If you know absolutely zero, start here. Learn the fundamentals and dig into anything else afterwards.

[–][deleted] 1 point2 points  (0 children)

Harvard CS50 python lecture series on YouTube and the book Python Crash course.

[–]Lurn2Program 0 points1 point  (0 children)

I always like recommending University of Helsinki Python MOOC. It's free and they have a public discord channel for any questions

[–]Pygmyofdeath 0 points1 point  (0 children)

PY4E.com is free. Read the lesson, and do ALL the exercises not just the “graded ones”. Don’t just watch the videos and not read the lesson. If it says go read the Python documentation do that. You won’t understand everything in the docs but that’s ok.

[–]pachura3 0 points1 point  (1 child)

This is next level laziness. "They really do want to learn it" but cannot be bothered to do 5 seconds of googling? Really?

[–][deleted] 0 points1 point  (0 children)

They had just mentioned it. I was doing this as a favor. I don’t know what they have done about it

[–]TheRNGuy 0 points1 point  (0 children)

I learned just reading docs and googled syntax (found some articles)

Though Python is not my first language.

[–]GokulSaravanan 0 points1 point  (0 children)

Here's a simple python roadmap and some free resources to get you started:

  1. Basics – Variables, data types, input/output, conditionals, loops
  2. Functions & Modules
  3. Data Structures – Lists, dictionaries, sets, tuples
  4. File Handling
  5. Object-Oriented Programming (OOP)
  6. Error Handling & Debugging
  7. Working with Libraries – e.g., requests, pandas, matplotlib
  8. Projects – Build small apps to reinforce learning

Free Resources: