tobool
功能说明
描述
将表达式转换成逻辑型。
函数原型
tobool(expression)
参数
名称 | 类型 | 描述 |
---|---|---|
expression | 任意型 | 要转为逻辑型的表达式 |
返回值
类型 | 描述 |
---|---|
逻辑型 | 执行成功返回逻辑型,否则返回None |
备注
可能出现的错误信息,执行 getlasterror 函数获取具体详细信息:
- 错误编码=getlasterror()
- 错误信息=getlasterror(1)
错误编码 | 错误信息 |
---|---|
1400 | 参数类型不正确 |
示例
def test():
# 赋值2个字符型内容
ret1="True"
ret2="False"
# 查询变量类型均为[字符型]:<class 'str'>
print(type(ret1))
print(type(ret2))
# 执行类型转换
ret1=tobool(ret1)
ret2=tobool(ret2)
# 再次查询变量类型,转换成功:<class 'bool'>
print(type(ret1))
print(type(ret2))
演示示例
- 暂无
安装包下载
- 暂无
相关视频
- 暂无