Python 入門到精通 — 數據類型


數據類型樹

Data-Type Tree

如何使用 Python 的數據類型 ✈️

Python 中, 將在變數賦予後會自動的決定變數的數據類型
我們可使用 "type(obj)" 去檢查變數的數據類型

範例

"""
data types
"""
# int / float
x = 1
y = 1.1
print(type(x))
print(type(y))

# bool
a = True
b = False
print(type(a))
print(type(b))

# str
z = "Hello"
print(type(z))

# list
c = [1, 2, 3]
print(type(c))

# tuple
d = (1, 2, 3)
print(type(d))
e = (1, ..., 9)
print(type(e))

# set
f = {1, 2, 3}
print(type(f))

# dict
g = {"car": "red", "wheel": 4}
print(type(g))

結果

<class 'int'>
<class 'float'>
<class 'bool'>
<class 'bool'>
<class 'str'>
<class 'list'>
<class 'tuple'>
<class 'tuple'>
<class 'set'>
<class 'dict'>