高端解决方案
使用可选参数store_true,将上述代码改为:
parse.add_argument("--preprocess", action='store_true', help='run prepare_data or not')
在命令行执行py文件时,不加--preprocess,默认传入的preprocess参数为False;
如果加--preprocess,则传入的是True。
还可以将上述代码改为:
parse.add_argument("--preprocess", default='False', action='store_true', help='run prepare_data or not')
和 1 中表达的意思完全相同。
在命令行执行py文件时,不加--preprocess,默认传入的preprocess参数为False;
如果加--preprocess,则传入的是True。
还可以将上述代码改为:
parse.add_argument("--preprocess", default='True', action='store_true', help='run prepare_data or not')
和 1 中表达的意思完全相反。
在命令行执行py文件时,不加--preprocess,默认传入的preprocess参数为True;
如果加--preprocess,则传入的是False。
产生的原因和较Low的解决方案
猜测可能的原因是数据类型导致的,传入的都是string类型,转为bool型时,由于是非空字符串,所以转为True。
从这个角度去更改的话,由于type参数接收的是callable的参数类型来对我们接收的原始参数做处理,我们可以定义一个函数赋值给type参数,用它对原始参数做处理:
parser.add_argument("--preprocess", type=str2bool, default='True', help='run prepare_data or not')
下面定义这个函数将str类型转换为bool型:
def str2bool(str):
return True if str.lower() == 'true' else False
补充知识:parser.add_argument验证格式
我就废话不多说了,还是直接看代码吧!
article_bp = Blueprint('article', __name__, url_prefix='/api')
api = Api(article_bp)
parser = reqparse.RequestParser()
parser.add_argument('name', type=str, help='必须填写名称', required=True)
channel_fields = {
'id': fields.Integer,
'cname': fields.String
}
class ChannelResource(Resource):
def get(self):
channels = Channel.query.all()
return marshal(channels, channel_fields)
def post(self):
args = parser.parse_args()
if args:
channel = Channel()
channel.cname = args.get('name')
channel.save()
return {'msg': '频道添加成功', 'channel': marshal(channel, channel_fields)}
else:
return {'msg': '频道添加失败'}
以上这篇python argparse传入布尔参数false不生效的解决就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
铁雪资源网 Design By www.gsvan.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
铁雪资源网 Design By www.gsvan.com
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。