Chapter 1: Basic Syntax & Variables – With Deep Examples

Section 1: Statements and Line Breaks

Basic Examples:

print("Welcome to ")     # Simple print statement
x = 5                          # Variable assignment
y = x + 10                     # Expression
print("Sum is:", y)            # Print with multiple arguments

Scroll to Top