Python Basics (Quick Start)
What is Python?
Python is a high-level, interpreted language known for readability and a vast ecosystem.
Common uses include scripting, web development, data analysis, and machine learning.
Core Syntax
Variables are dynamically typed. Indentation defines blocks.
Control flow: if/elif/else, for, while.
Functions & Modules
Define functions with def; reuse code via imports.
Virtual environments help manage dependencies.
Example
x = 10; if x > 5: print('big')
def add(a,b): return a+b