溫馨提示×

python怎么看變量的類型

小億
105
2024-01-08 16:16:05
欄目: 編程語言

在Python中,可以使用type()函數(shù)來查看變量的類型。例如:

x = 5
print(type(x))  # <class 'int'>

y = 3.14
print(type(y))  # <class 'float'>

z = "Hello, world!"
print(type(z))  # <class 'str'>

上述代碼中,通過使用type()函數(shù),分別打印了整數(shù)變量x,浮點(diǎn)數(shù)變量y和字符串變量z的類型。

0