© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Sabin Sim
Coding, Learning, Growing — one project at a time
01. What is a Variable? A variable is like a label that stores data. Use the = operator to assign a value. x = 10 # Integer (int) y = 3.14 # Floating-point number (float) name = "Sabin" # String (str) is_ok = True # Boolean (b...
No responses yet.