CodeMasteryLab
Section 1

Python Basics

Introduction to Python programming

Python Basics

Welcome to Python programming!

What is Python?

Python is a high-level, interpreted programming language known for its simplicity and readability.

Your First Python Program

print("Hello, World!")

Variables and Data Types

# Numbers
age = 25
price = 19.99

# Strings
name = "Alice"
message = 'Hello, Python!'

# Boolean
is_active = True

Basic Operations

# Arithmetic
result = 10 + 5
product = 4 * 3

# String concatenation
greeting = "Hello" + " " + "World"