python 判断 是否是字符串
时间: 2023-01-30 09:20:36 浏览: 63
如果要判断一个对象是否是字符串,可以使用 Python 的内置函数 `isinstance()`。例如:
```
if isinstance(obj, str):
print("obj 是字符串")
else:
print("obj 不是字符串")
```
你也可以使用 Python 的 `type()` 函数来判断,但是 `isinstance()` 比 `type()` 更加灵活,因为它可以判断一个对象是否是某种类型的子类型。
例如:
```
if type(obj) is str:
print("obj 是字符串")
else:
print("obj 不是字符串")
```
阅读全文