python判断一个字段是否为字符串
时间: 2023-10-18 11:11:33 浏览: 68
基于python实现判断字符串是否数字算法
5星 · 资源好评率100%
可以使用isinstance()函数来判断一个字段是否为字符串。示例代码如下:
```python
field = 'hello'
if isinstance(field, str):
print('field is a string')
else:
print('field is not a string')
```
输出结果为:
```
field is a string
```
如果field不是字符串,输出结果为:
```
field is not a string
```
阅读全文