真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

pythonargparse傳入布爾參數(shù)false不生效怎么辦-創(chuàng)新互聯(lián)

這篇文章主要為大家展示了python argparse傳入布爾參數(shù)false不生效怎么辦,內(nèi)容簡(jiǎn)而易懂,希望大家可以學(xué)習(xí)一下,學(xué)習(xí)完之后肯定會(huì)有收獲的,下面讓小編帶大家一起來(lái)看看吧。

成都創(chuàng)新互聯(lián)是一家專注于成都網(wǎng)站設(shè)計(jì)、做網(wǎng)站與策劃設(shè)計(jì),青州網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十載,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:青州等地區(qū)。青州做網(wǎng)站價(jià)格咨詢:18982081108

跑代碼時(shí),在命令行給python程序傳入bool參數(shù),但無(wú)法傳入False,無(wú)論傳入True還是False,程序里面都是True。下面是代碼:

parser.add_argument("--preprocess", type=bool, default=True, help='run prepare_data or not')

高端解決方案

使用可選參數(shù)store_true,將上述代碼改為:

parse.add_argument("--preprocess", action='store_true', help='run prepare_data or not')

在命令行執(zhí)行py文件時(shí),不加--preprocess,默認(rèn)傳入的preprocess參數(shù)為False;

如果加--preprocess,則傳入的是True。

還可以將上述代碼改為:

parse.add_argument("--preprocess", default='False', action='store_true', help='run prepare_data or not')

和 1 中表達(dá)的意思完全相同。

在命令行執(zhí)行py文件時(shí),不加--preprocess,默認(rèn)傳入的preprocess參數(shù)為False;

如果加--preprocess,則傳入的是True。

還可以將上述代碼改為:

parse.add_argument("--preprocess", default='True', action='store_true', help='run prepare_data or not')

和 1 中表達(dá)的意思完全相反。

在命令行執(zhí)行py文件時(shí),不加--preprocess,默認(rèn)傳入的preprocess參數(shù)為True;

如果加--preprocess,則傳入的是False。

產(chǎn)生的原因和較Low的解決方案

猜測(cè)可能的原因是數(shù)據(jù)類型導(dǎo)致的,傳入的都是string類型,轉(zhuǎn)為bool型時(shí),由于是非空字符串,所以轉(zhuǎn)為True。

從這個(gè)角度去更改的話,由于type參數(shù)接收的是callable的參數(shù)類型來(lái)對(duì)我們接收的原始參數(shù)做處理,我們可以定義一個(gè)函數(shù)賦值給type參數(shù),用它對(duì)原始參數(shù)做處理:

parser.add_argument("--preprocess", type=str2bool, default='True', help='run prepare_data or not')

下面定義這個(gè)函數(shù)將str類型轉(zhuǎn)換為bool型:

def str2bool(str):
return True if str.lower() == 'true' else False

補(bǔ)充知識(shí):parser.add_argument驗(yàn)證格式

我就廢話不多說(shuō)了,還是直接看代碼吧!

article_bp = Blueprint('article', __name__, url_prefix='/api')

api = Api(article_bp)
parser = reqparse.RequestParser()
parser.add_argument('name', type=str, help='必須填寫(xiě)名稱', 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': '頻道添加失敗'}

網(wǎng)站名稱:pythonargparse傳入布爾參數(shù)false不生效怎么辦-創(chuàng)新互聯(lián)
網(wǎng)站網(wǎng)址:http://weahome.cn/article/jjhgp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部