python 判断是否字符串
时间: 2023-09-02 16:11:53 浏览: 92
基于python实现判断字符串是否数字算法
5星 · 资源好评率100%
在 Python 中,可以使用 `isinstance()` 函数来判断一个变量是否为字符串类型。示例如下:
```python
s = "hello world"
if isinstance(s, str):
print("s 是字符串")
else:
print("s 不是字符串")
```
另外,还可以使用 `type()` 函数结合 `str` 类型来判断,示例如下:
```python
s = "hello world"
if type(s) == str:
print("s 是字符串")
else:
print("s 不是字符串")
```
两种方法的输出结果都是:`s 是字符串`。
阅读全文