Cấp độ: beginner 25 phútmin Miễn phí Free Young Creator Young Creator

Python: Biến và kiểu dữ liệu Python: Variables and data types

Script giới thiệu bản thân bằng Python A Python self-introduction script

Bạn sẽ học gì What you will learn

  • Hiểu 4 kiểu dữ liệu cơ bản Understand 4 basic data types
  • Khai báo và in biến Declare and print variables
  • Dùng f-string Use f-strings

Bạn sẽ tạo gì What you will build

Script giới thiệu bản thân bằng Python A Python self-introduction script

Code mẫu Sample code

python
# Tiếng Việt / English comments
ten = "Hà Mi"           # name (str)
tuoi = 16               # age (int)
diem_tb = 9.5           # avg score (float)
thich_code = True       # likes coding (bool)

print(f"Xin chào! Tôi là {ten}.")
print(f"Hello! I am {ten}.")
print(f"Tuổi / Age: {tuoi}")
print(f"Điểm TB / Avg: {diem_tb}")
print(f"Kiểu tuổi / Type: {type(tuoi)}")