Python Learning Journey
- Python Basics
- Python Intermediate
- Python Advanced
- Python Libraries
- Python Projects
- Python Interview Questions
- Python Resources
- Python Cheat Sheet
- Python Introduction
- Python Installation
- Python Syntax
- Python Variables
- Python Data Types
- Python Operators
- Python Comments
- Python If...Else
- Python Loops
- Python Functions
- Python Lambda
- Python Arrays
- Python Classes/Objects
- Python Inheritance
- Python Iterators
- Python Scope
- Python Modules
- Python Dates
- Python JSON
- Python RegEx
- Python PIP
- Python Try...Except
- Python User Input
- Python String Formatting
- Python File Handling
- Python Read Files
- Python Write/Create Files
- Python Delete Files
- Python NumPy
- Python Pandas
- Python Matplotlib
- Python Seaborn
- Python Plotly
- Python Bokeh
- Python Scikit-learn
- Python TensorFlow
- Python Keras
- Python OpenCV
- Python Django
- Python Flask
- Python Pyramid
- Python Bottle
- Python Tornado
- Python Web2py
- Python CherryPy
- Python FastAPI
- Python Pygame
- Python PyQT
- Python Tkinter
- Python wxPython
- Python Kivy
- Python PyGTK
- Python Project 1: Simple Calculator
- Python Project 2: To-Do List
- Python Project 3: Weather App
- Python Project 4: BMI Calculator
- Python Project 5: Quiz App
- Python Project 6: Chat App
- Python Project 7: Expense Tracker
- Python Project 8: URL Shortener
- Python Project 9: Password Generator
- Python Project 10: Alarm Clock
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