python intro

Sure, here’s a cheat sheet for Lesson 1: Introduction to Python:

Basics:

Syntax:

Example Code:

# Variables
x = 5
y = 3.14
name = "Alice"
is_valid = True

# Arithmetic Operations
result = x + y
print("Result:", result)

# Printing
print("My name is", name)

Notes: