https://github.com/mrankitgupta/python-roadmap
I am sharing Python lessons from scratch to intermediate with practice sets which I have studied into my Journey of 66DaysofData into Data Analytics.
https://github.com/mrankitgupta/python-roadmap
66daysofdata analytics ankitgupta data-analysis data-analysis-python data-analytics data-mining data-science data-structures data-visualization jupyter matplotlib mrankitgupta numpy pandas programming python python-library python3
Last synced: 17 days ago
JSON representation
I am sharing Python lessons from scratch to intermediate with practice sets which I have studied into my Journey of 66DaysofData into Data Analytics.
- Host: GitHub
- URL: https://github.com/mrankitgupta/python-roadmap
- Owner: mrankitgupta
- License: mit
- Created: 2022-03-05T18:44:40.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-16T07:02:05.000Z (over 2 years ago)
- Last Synced: 2025-03-29T19:11:15.567Z (about 1 month ago)
- Topics: 66daysofdata, analytics, ankitgupta, data-analysis, data-analysis-python, data-analytics, data-mining, data-science, data-structures, data-visualization, jupyter, matplotlib, mrankitgupta, numpy, pandas, programming, python, python-library, python3
- Language: Python
- Homepage:
- Size: 98.6 KB
- Stars: 25
- Watchers: 2
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Complete Python Roadmap
![]()
**I am sharing Python lessons from scratch to intermediate with practice sets which I have studied into my Journey of Data Science.**
For more detials, refer:
[Data Analyst Roadmap](https://github.com/mrankitgupta/Data-Analyst-Roadmap)
:hourglass:### Overview of Python Programming
Python is an object-oriented programming language that was created with an emphasis on readability and simplicity. It has been used as the language of choice for Machine Learning, Artificial Intelligence, Web Application Development, and more recently Data Science - Python's strength is its versatility.
Since itβs relatively easy to learn, Python has been adopted by many non-programmers such as accountants and scientists, for a variety of everyday tasks.
**What can you do with Python? Some things include:**- Data analysis and machine learning
- Web development
- Automation or scripting
- Software testing and prototyping
- Many more Everyday tasks
Certifications π π βοΈ
- [Data Analysis with Python](https://github.com/mrankitgupta) - by IBM
- [Data Visualization with Python](https://github.com/mrankitgupta) - by IBM- [Pandas](https://www.kaggle.com/learn/certification/mrankitgupta/pandas) - by Kaggle
- [Numpy](https://olympus1.mygreatlearning.com/course_certificate/IQVNJSIN) - by Great Learning
- [Matplotlib](https://olympus1.mygreatlearning.com/course_certificate/RNVTUIMW) - by Great Learning- [Databases and SQL for Data Science with Python](https://github.com/mrankitgupta) - by IBM
- [Statistics for Data Science with Python](https://www.credly.com/badges/354576a0-b672-4245-8cad-82dc3f3df76f/public_url) - by IBM
## Featured projects:question: π¨βπ» π°οΈ
[Data Analyst Roadmap](https://github.com/mrankitgupta/Data-Analyst-Roadmap)
:hourglass:
[Library Management System using Python on Django](https://github.com/mrankitgupta/Library_Management_System_Django)
π¨βπ»
[Spotify Data Analysis using Python](https://github.com/mrankitgupta/Spotify-Data-Analysis-using-Python)
π
[Sales Insights - Data Analysis using Tableau & SQL](https://github.com/mrankitgupta/Sales-Insights-Data-Analysis-using-Tableau-and-SQL)
π
[Statistics for Data Science using Python](https://github.com/mrankitgupta/Statistics-for-Data-Science-using-Python)
π
[Kaggle - Pandas Solved Exercises](https://github.com/mrankitgupta/Kaggle-Pandas-Solved-Exercises)
π
[Python Libraries for Data Science Roadmap](https://github.com/mrankitgupta/Python-Libraries-Roadmap)
ποΈ
## Python Lessons for Data Science![]()
Python has become a staple in data science, allowing data analysts and other professionals to use the language to conduct complex statistical calculations, create data visualizations, build machine learning algorithms, manipulate and analyze data, and complete other data-related tasks.
Python can build a wide range of different data visualizations, like line and bar graphs, pie charts, histograms, and 3D plots. Python also has a number of libraries that enable coders to write programs for data analysis and machine learning more quickly and efficiently.
|**Sr.No. π’**|**Lessons π**| **Reference Links :link:**| **Exercises π¨βπ»**|
|------|--------------------|---------------------|---------------------|
|1| **Python Basics** - Features Applications, Python 2 vs Python 3, Libraries uses, Interpreter Prompt, Script mode programming, IDEs, Features of an IDE, Compiler vs Interpreter, Pycharm - Featues, Important tools, Useful Plugins | [JavaTpoint](https://www.javatpoint.com/python-tutorial)| [Exercise 1](https://github.com/mrankitgupta/Python-Lessons/tree/main/Python%20Exercises/Exercise%201%20-%20Introduction) |
|2| Modules, Comments, Pip, Docstrings | [Geeks for Geeks](https://www.geeksforgeeks.org/python-programming-language/)| [Exercise 2](https://github.com/mrankitgupta/Python-Lessons/tree/main/Python%20Exercises/Exercise%202%20-%20Module) |
|3| Indentation, Packages in Python, Modules vs Packages | [YouTube 1](https://www.youtube.com/watch?v=WGJJIrtnfpk)| |
|4| Variables, Declaring & Assigning Values, Object references, Object identity, Variable names, Multiple Assignment, Variable Types | [Youtube 2](https://www.youtube.com/watch?v=EyEqWFvLDT8)| [Exercise 3](https://github.com/mrankitgupta/Python-Lessons/tree/main/Python%20Exercises/Exercise%203%20-%20Variables) |
|5| Fundamentals of Python - Tokens, Keywords, Literals, Operators, Identifiers & Comments | [Python Lessons for Practice](https://github.com/mrankitgupta/PythonLessons)| [Exercise 4](https://github.com/mrankitgupta/Python-Lessons/tree/main/Python%20Exercises/Exercise%204%20-%20Comments) |
|6| Data Types - Numbers, Sequence Type, Dictionary, Set, Type Conversion | [Data Analysis with Python - by IBM](https://github.com/mrankitgupta)| [Exercise 5](https://github.com/mrankitgupta/Python-Lessons/tree/main/Python%20Exercises/Exercise%205%20-%20Data%20Types) |
|7| **Collection Module** - String, List & Tuples, Sets, Dictionary & Different containers provided by collection module | [Data Visualization with Python](https://github.com/mrankitgupta)| [Exercise 6](https://github.com/mrankitgupta/Python-Lessons/tree/main/Python%20Exercises/Exercise%206%20-%20Containers) |
|8| **Control Flows** - Indentation, If-Else & ELIF Statements, For, While & Nested Loops, Control statements & Patterns | [Databases and SQL for Data Science with Python - by IBM](https://github.com/mrankitgupta)| [Exercise 7](https://github.com/mrankitgupta/Python-Lessons/tree/main/Python%20Exercises/Exercise%207%20-%20Control%20Flows) |
|9| **Functions** - Types of Functions, Arguments & it's Types, Scope of Variables, Built-in Functions | [Statistics for Data Science with Python - by IBM](https://www.credly.com/badges/354576a0-b672-4245-8cad-82dc3f3df76f/public_url)| [Exercise 8](https://github.com/mrankitgupta/Python-Lessons/tree/main/Python%20Exercises/Exercise%208%20-%20Functions) |
|10| **Functions** - Lambda Functions, Decorators, Generators | [HackerRank - Practice](https://www.hackerrank.com/mrankitgupta)|
|11| **Arrays** | [Code With Harry - Python Notes & Tutorial](https://www.codewithharry.com/videos/python-tutorial-easy-for-beginners)| [Exercise 9](https://github.com/mrankitgupta/Python-Lessons/tree/main/Python%20Exercises/Exercise%209%20-%20Arrays) |
|12| **Hash Tables / Hash Map** | [Python Cheatsheet - Code With Harry](https://www.codewithharry.com/blogpost/python-cheatsheet)| [Exercise 10](https://github.com/mrankitgupta/Python-Lessons/tree/main/Python%20Exercises/Exercise%2010%20-%20Hash%20Table%20or%20Hash%20Map) |
|13| **OOPs Concept** - Class & Objects, Constructors, Destructors, Inheritance | [Basic Python Projects - YouTube](https://www.youtube.com/playlist?list=PLu0W_9lII9agqZuv_XJen_BEHycIh-FmG)| [Exercise 11](https://github.com/mrankitgupta/Python-Lessons/tree/main/Python%20Exercises/Exercise%2011%20-%20OOPs%20Concept) |
|14| **OOPs Concept** - Polymorphism, Encapsulation | [Project 1: Spotify Data Analysis using Python](https://github.com/mrankitgupta/Spotify-Data-Analysis-using-Python)|
|15| **OOPs Concept** - Data Abstraction, Python Super Function | [Project 2: Statistics for Data Science using Python](https://github.com/mrankitgupta/Statistics-for-Data-Science-using-Python)|
|16| **Exception Handling, File Handling** | | [Exercise 12](https://github.com/mrankitgupta/Python-Lessons/tree/main/Python%20Exercises/Exercise%2012%20-%20Exception%20Handling) |
|17| **Unit Testing in Python** | :white_check_mark:|**Prerequisite:**
[Python Libraries for Data Science Roadmap](https://github.com/mrankitgupta/Python-Libraries-Roadmap)
ποΈ
### Projects in Python
|**Sr.No. π’**|**Projects π¨βπ»**| **Reference Links :link:**|
|------|--------------------|---------------------|
|**Python Project 1**| Spotify Data Analysis using Python | [GitHub Project](https://github.com/mrankitgupta/Spotify-Data-Analysis-using-Python) & [Kaggle Notebook](https://www.kaggle.com/code/mrankitgupta/spotify-data-analysis-using-python-project) |
|**Python Project 2**| Boston Housing Data Analysis using Python | [Project](https://github.com/mrankitgupta/Statistics-for-Data-Science-using-Python-Project) |
## Useful sites to learn Coding in Python :link:### YouTube Channels:
| [freeCodeCamp.org](https://www.youtube.com/channel/UC8butISFwT-Wl7EV0hUK0BQ) | [Code With Harry](https://www.youtube.com/channel/UCeVMnSShP_Iviwkknt83cww), [Programming With Harry](https://www.youtube.com/channel/UC7btqG2Ww0_2LwuQxpvo2HQ) | [CodeBasics](https://www.youtube.com/c/codebasics) | [Edureka](https://www.youtube.com/channel/UCkw4JCwteGrDHIsyIIKo4tQ) | [Gate Smashers](https://www.youtube.com/c/GateSmashers) | [Jenny's Lectures](https://www.youtube.com/c/JennyslecturesCSITNETJRF) | [Simplilearn](https://www.youtube.com/channel/UCsvqVGtbbyHaMoevxPAq9Fg) | [Intellipaat](https://www.youtube.com/c/Intellipaat) |
|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|### Other Learning Platforms:
| [JavaTpoint](https://www.javatpoint.com/) | [TutorialsPoint](https://www.tutorialspoint.com/tutorialslibrary.htm) | [Geeks For Geeks](https://www.geeksforgeeks.org/) | [Code With Harry](https://www.codewithharry.com/) | [GitHub](https://github.com/mrankitgupta) | [Kaggle](https://www.kaggle.com/mrankitgupta) | [DataCamp](https://www.datacamp.com/) | [W3Schools](https://www.w3schools.com/) | [Guru99](https://www.guru99.com/) | [Dev](https://dev.to/mrankitgupta) |
|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|
### For Certifications:| [Coursera](https://coursera.org/share/c40b8f3c3c8ef8195d4dbfe8b2528f4d) | [Kaggle](https://www.kaggle.com/learn/certification/mrankitgupta/pandas) | [Simplilearn](https://www.simplilearn.com/skillup-certificate-landing?token=eyJjb3Vyc2VfaWQiOiI3OTUiLCJjZXJ0aWZpY2F0ZV91cmwiOiJodHRwczpcL1wvY2VydGlmaWNhdGVzLnNpbXBsaWNkbi5uZXRcL3NoYXJlXC90aHVtYl8zMzkyNjI4XzE2NTAxMTE0NzcucG5nIiwidXNlcm5hbWUiOiJBbmtpdCBHdXB0YSJ9&utm_source=shared-certificate&utm_medium=lms&utm_campaign=shared-certificate-promotion) | [Great Learnings](https://olympus1.mygreatlearning.com/course_certificate/IQVNJSIN) | [Forage](https://www.theforage.com/) | [Edureka](https://www.edureka.co/) | [HackerRank](https://www.hackerrank.com/mrankitgupta) | [Udemy](https://www.udemy.com/) | [Codechef](https://www.codechef.com/) | [Upgrad](https://www.upgrad.com/) | [Udacity](https://www.udacity.com/) |
|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|### For Coding Practice:
| [HackerRank](https://www.hackerrank.com/mrankitgupta) | [Leetcode](https://leetcode.com/mrankitgupta1/) | [Kaggle](https://www.kaggle.com/mrankitgupta) | [Codechef](https://www.codechef.com/) | [Unstop](https://unstop.com/) | [HackerEarth](https://www.hackerearth.com/practice/) | [Codeforces](https://codeforces.com/) | [Interviewbit](https://www.interviewbit.com/) | [Google Dev](https://developers.google.com/) |
|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|--------------------|### Liked my Contributions:question:[Follow Me](https://github.com/mrankitgupta/):point_right: [Nominate Me for GitHub Stars](https://stars.github.com/nominate/) :star: :sparkles:
## For any queries/doubts π π
### [Ankit Gupta](https://bio.link/AnkitGupta)