Skip to content

Commit bca00d4

Browse files
variable file
1 parent b84fbb4 commit bca00d4

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
layout: default
3+
title: Python Lesson 1 – Variables & Data Types
4+
---
5+
6+
# 🧠 Lesson 1 – Variables & Data Types
7+
**Goal:** Understand how Python stores and manages different kinds of data.
8+
9+
### 🧩 Topics
10+
- Creating and naming variables
11+
- Integers, floats, strings, booleans
12+
- Type conversion and `type()` function
13+
- Basic operations and string concatenation
14+
15+
### 💡 Example
16+
```python
17+
age = 30
18+
name = "Kristopher"
19+
print(f"{name} is {age} years old.")

0 commit comments

Comments
 (0)