Document 3: Intro to Python Programming
Title: Reference Guide: Basic Syntax and Data Structures in Python
1. Introduction Python is a high-level, interpreted language known for its
readability. It is widely used in data science, web development, and
automation.
2. Essential Syntax
Variables: Assigned using the = operator (e.g., x = 5).
Lists: Ordered collections declared with square brackets [1, 2, 3].
Dictionaries: Key-value pairs declared with curly braces {"key": "value"}.
3. Control Flow Example
Python
# Simple Loop
for i in range(5):
if i % 2 == 0:
print(f"{i} is even")
else:
print(f"{i} is odd")
Next Steps
Open a blank document on your computer.
Copy/Paste the text from Document 1.
Save it as Project_Management_SOP.pdf.
Repeat the process for the other two.