python---传入参数false不生效--str和bool的转换
- UID
- 1066743
|
python---传入参数false不生效--str和bool的转换
遇到情况
项目中通过环境变量传入run_type=false值参数使用。
但是 走的分支仍然是 true的分支。
原因
猜测是数据类型导致的,应该传入时被识别成了str类型的参数,所以会走true的分支。
使用bool(run_type) 转出来 还是true。
因为 bool()方法 传入 字符串 仍为true。
解决方法
使用 str转bool方法 如下:
def str_to_bool(str):
return True if str.lower() == 'true' else False |
|
|
|
|
|