Python ကို zero ကနေ စပြီး syntax, data types, flow, functions, files, OOP နဲ့ mini project အထိ တစ်ဆင့်ချင်းသင်မယ်။
Python install, VS Code setup, indentation, comments, print(), input() basics.
String, int, float, bool, None, type conversion, f-string formatting.
if / elif / else, comparison, logical operators, for loop, while loop, range().
Lists, tuples, sets, dictionaries, slicing, common methods and when to use each.
def, return, parameters, default values, *args, **kwargs, import modules.
Read/write files safely with with open(), JSON basics, try / except / finally.
class, __init__, methods, properties, inheritance, encapsulation basics.
Todo app project: menu, add/list/done/delete, JSON file save, clean functions.
Full-stack web framework — ORM, admin panel, templates, forms, DRF. "Batteries included" approach.
Micro-framework — routes, Jinja2, SQLAlchemy, blueprints, JSON API. Lightweight and flexible.
High-performance async API — Pydantic validation, auto Swagger docs, JWT auth, dependency injection.
name = "Mg Mg"
age = 20
price = 9.99
active = Trueif age >= 18:
print("adult")
else:
print("young")for i in range(5):
print(i)
while running:
breakdef greet(name):
return f"Hi {name}"