Skip to content

Latest commit

 

History

History
97 lines (87 loc) · 3.76 KB

README.md

File metadata and controls

97 lines (87 loc) · 3.76 KB

Python Learning Journey

  1. Python Basics
  2. Python Intermediate
  3. Python Advanced
  4. Python Libraries
  5. Python Projects
  6. Python Interview Questions
  7. Python Resources
  8. Python Cheat Sheet

Python Basics

  1. Python Introduction
  2. Python Installation
  3. Python Syntax
  4. Python Variables
  5. Python Data Types
  6. Python Operators
  7. Python Comments
  8. Python If...Else
  9. Python Loops
  10. Python Functions
  11. Python Lambda
  12. Python Arrays
  13. Python Classes/Objects
  14. Python Inheritance
  15. Python Iterators
  16. Python Scope
  17. Python Modules
  18. Python Dates
  19. Python JSON
  20. Python RegEx
  21. Python PIP
  22. Python Try...Except
  23. Python User Input
  24. Python String Formatting
  25. Python File Handling
  26. Python Read Files
  27. Python Write/Create Files
  28. Python Delete Files

Python Libraries

  1. Python NumPy
  2. Python Pandas
  3. Python Matplotlib
  4. Python Seaborn
  5. Python Plotly
  6. Python Bokeh
  7. Python Scikit-learn
  8. Python TensorFlow
  9. Python Keras
  10. Python OpenCV
  11. Python Django
  12. Python Flask
  13. Python Pyramid
  14. Python Bottle
  15. Python Tornado
  16. Python Web2py
  17. Python CherryPy
  18. Python FastAPI
  19. Python Pygame
  20. Python PyQT
  21. Python Tkinter
  22. Python wxPython
  23. Python Kivy
  24. Python PyGTK

Python Projects

  1. Python Project 1: Simple Calculator
  2. Python Project 2: To-Do List
  3. Python Project 3: Weather App
  4. Python Project 4: BMI Calculator
  5. Python Project 5: Quiz App
  6. Python Project 6: Chat App
  7. Python Project 7: Expense Tracker
  8. Python Project 8: URL Shortener
  9. Python Project 9: Password Generator
  10. Python Project 10: Alarm Clock

Python Interview Questions

  1. Python Interview Questions

Python Resources

  1. Python Resources

Python Cheat Sheet

  1. Python Cheat Sheet

Learnings

19 September 2024

  • a array is called "list" in python.
  • we can get the index of an item by cally listName.index(itemName). eg fruits = ["apple", "banana", "cherry"] fruits.index("banana")
  • define a function by def command. eg: def my_function():
  • call a function by function name. eg: my_function()
  • we can loop item with for and while loop. eg: for x in fruits: print(x) or i = 0 while i < 6: print(i) i += 1