Python รับประเภทข้อมูล
รับประเภทข้อมูล
คุณสามารถรับชนิดข้อมูลของวัตถุใด ๆ โดยใช้type()
ฟังก์ชัน:
ตัวอย่าง
พิมพ์ชนิดข้อมูลของตัวแปร x:
x = 5
print(type(x))
นี่คือประเภทข้อมูลในตัวทั้งหมดใน Python:
ตัวอย่าง
print(type("Hello"))
print(type(3))
print(type(3.14))
print(type(1j))
print(type(["apple", "banana", "cherry"]))
print(type(("apple", "banana",
"cherry")))
print(type(range(6)))
print(type({"name" : "John", "age" :
36}))
print(type({"apple", "banana", "cherry"}))
print(type(frozenset({"apple", "banana", "cherry"})))
print(type(True))
print(type(b"Hello"))
print(type(bytearray(5)))
print(type(memoryview(bytes(5))))