第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

isinstance(False, int) 返回 True

isinstance(False, int) 返回 True

桃花長相依 2022-09-06 17:51:17
我想確定變量是否為整數(shù),因此我使用以下代碼:if isinstance(var, int):     do_something()但是當 執(zhí)行時,函數(shù)被執(zhí)行。var = Falsedo_something當 時,函數(shù)正常工作。var = Noneisinstance()
查看完整描述

3 回答

?
慕村225694

TA貢獻1880條經(jīng)驗 獲得超4個贊

因為 是 的子類。

您可以在以下位置找到它boolintbuiltins.py


class bool(int):

    """

    bool(x) -> bool


    Returns True when the argument x is true, False otherwise.

    The builtins True and False are the only two instances of the class bool.

    The class bool is a subclass of the class int, and cannot be subclassed.

    """

所以也.

是 當 的類型是 的派生類時。issubclass(bool, int)Trueisinstance(x, y)Truexy


查看完整回答
反對 回復 2022-09-06
?
達令說

TA貢獻1821條經(jīng)驗 獲得超6個贊

在布爾值中被定義為整數(shù)的子類。Python3

該均值等價于 as 等價于True1False0

您可以在此處找到更多詳細信息。該鏈接的完全相同的解釋是:

There are three distinct numeric types: integers, floating point numbers, and complex numbers. In addition, Booleans are a subtype of integers


查看完整回答
反對 回復 2022-09-06
?
HUH函數(shù)

TA貢獻1836條經(jīng)驗 獲得超4個贊

Python 將 和 視為 。現(xiàn)在你可以在這里做的是:True1False0


try:

    var = int(string(False))

except ValueError:

    print("Invalid Integer")


查看完整回答
反對 回復 2022-09-06
  • 3 回答
  • 0 關(guān)注
  • 236 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號