python 判断 变量类型
时间: 2024-08-01 20:01:48 浏览: 56
Python之变量类型和if判断方式
在Python中,你可以使用内置的`type()`函数来判断变量的数据类型。这个函数会返回变量的类型信息,例如字符串、整数、浮点数、列表、元组、字典等。下面是一些基本的例子:
```python
# 定义几个变量并检查它们的类型
x = 10
print(type(x)) # 输出:<class 'int'>
y = "Hello"
print(type(y)) # 输出:<class 'str'>
z = [1, 2, 3]
print(type(z)) # 输出:<class 'list'>
```
如果你想了解某个对象是否属于特定的类或类型,可以使用`isinstance()`函数,比如:
```python
a = 5.5
print(isinstance(a, float)) # 输出:True
b = "example"
print(isinstance(b, str) and not isinstance(b, int)) # 输出:True
```
阅读全文