python 判断变量是否是字符串
时间: 2023-11-22 12:04:29 浏览: 79
基于python实现判断字符串是否数字算法
5星 · 资源好评率100%
可以通过 isinstance 函数来判断一个变量是否是字符串类型,示例代码如下:
```python
x = "hello world"
if isinstance(x, str):
print("x is a string")
else:
print("x is not a string")
```
执行结果:
```
x is a string
```
阅读全文