Trong python, để kiểm tra kiểu dữ liệu của một biến thì chúng ta có thể sử dụng hàm type với cú pháp như sau:
type(data)
Trong đó
data
là biến mà chúng ta cần kiểm tra.
VD:
name = "Nguyễn Văn A"
type(name)
#string
age = 25
type(age)
#int
point = 8.9
type(point)
#float
option = [1,2,3,4,5]
type(option)
#list
tuplet = ('Nguyễn Văn A', 25 , True)
type(tuplet)
#Tuple
dictionary = {"name": "Nguyễn Văn A", "age": 25, "male": True}
type(dictionary)
# dict
0 comments:
Post a Comment