DEV Community

Discussion on: What I have learned so far with Python

Collapse
 
sahajranipa1 profile image
sahaj ranipa

Sir can you provide the full road map for python because I want to learn it. Like from where did you refer or learn all those topics which are discussed above? Thanks for this article.

Collapse
 
thomcord profile image
Thomas Cordeiro

Hi Sahaj,

Well, it is important to have an idea of what you want to do with the language, I want, for example learn Data Science, Machine Learning and AI, so I tend to look for all these topics, but of course you can just learn to language and later decide where you want to apply it. There are steps and concepts to learn in the beginning, I would list as:
Learn:

  • Variables
  • Conditionals
  • For loops
  • While loops
  • Object oriented programming

There is a great book called 'Think Python' start with this book. It will help a lot. (greenteapress.com/thinkpython/thin...) - copy and paste the link on the browser.
You can also take a look at: python.org

I will create a post in the future about this road map, and I will let you know.

Also check this out : dev.to/thomcord/how-creating-a-sol...

Collapse
 
ahferroin7 profile image
Austin S. Hemmelgarn

If you've already got some programming background, I would encourage you to look through the tutorial included in the official documentation. It actually does a pretty good job of covering the basics of the language itself in a way that's pretty easy to understand.

Collapse
 
thomcord profile image
Thomas Cordeiro

Totally agree. It can be little confusing without any background, but if one knows something, it is the best source of learning material