ประเภท หลาม()ฟังก์ชั่น
ตัวอย่าง
ส่งคืนประเภทของวัตถุเหล่านี้:
a = ('apple', 'banana', 'cherry')
b = "Hello World"
c = 33
x =
type(a)
y = type(b)
z = type(c)
ความหมายและการใช้งาน
ฟังก์ชันtype()
ส่งคืนประเภทของอ็อบเจ็กต์ที่ระบุ
ไวยากรณ์
type(object,
bases, dict)
ค่าพารามิเตอร์
Parameter | Description |
---|---|
object | Required. If only one parameter is specified, the type() function returns the type of this object |
bases | Optional. Specifies the base classes |
dict | Optional. Specifies the namespace with the definition for the class |