python如何判断变量是str类型
时间: 2024-05-10 13:14:21 浏览: 135
第3章 python变量和数据类型.pptx
在Python中,可以使用type()函数来判断一个变量的数据类型,例如判断一个变量x是否为字符串类型,可以使用如下代码:
```python
x = 'hello world'
if type(x) == str:
print('x is a string')
else:
print('x is not a string')
```
也可以使用isinstance()函数来判断一个变量是否为某种数据类型,例如判断一个变量x是否为字符串类型,可以使用如下代码:
```python
x = 'hello world'
if isinstance(x, str):
print('x is a string')
else:
print('x is not a string')
```
阅读全文