Python Dictionaries

Dictionaries

Sử dụng dictionaries để lưu trữ key-value data

⏱️ 100 phút📊 Trung bình

🗝️ Dictionaries cơ bản

# Tạo dictionary
student = {
"name": "Nguyễn Văn A",
"age": 20,
"grade": "A"
}

# Truy cập dữ liệu
print(student["name"])
student["email"] = "student@email.com"

💻 Bài tập thực hành

👨‍🎓 Bài 1: Student Management

Quản lý thông tin sinh viên với dictionary

🔧 Bài 2: Dictionary Functions

Xây dựng các hàm xử lý dictionary

📊 Bài 3: Data Analysis

Phân tích dữ liệu bằng dictionary