Python 函数 int(x, base=10)

Python 函数 int(x, base=10)

由下面文档给出的可以看出 int([x])int(x, base=10) 都是 int.__init__ 的一种special case

    def __init__(self, x, base=10): # known special case of int.__init__
        """
        int([x]) -> integer
        int(x, base=10) -> integer
        
        Convert a number or string to an integer, or return 0 if no arguments
        are given.  If x is a number, return x.__int__().  For floating point
        numbers, this truncates towards zero.
        
        If x is not a number or if base is given, then x must be a string,
        bytes, or bytearray instance representing an integer literal in the
        given base.  The literal can be preceded by '+' or '-' and be surrounded
        by whitespace.  The base defaults to 10.  Valid bases are 0 and 2-36.
        Base 0 means to interpret the base from the string as an integer literal.
        >>> int('0b100', base=0)
        4
        # (copied from class doc)
        """
        pass
有两个重要的部分

如果x不是数字,或者如果给定了基数,那么x必须是表示整数文本的字符串、字节或字节组实例

基本值默认为10。有效基数为0和2-36。基数0表示将字符串中的基解释为整型文本。

  1. x 默认 base = 10
  2. base = 0 表示根据自行给出的 x(系统自己识别)得出十进制的结果
  3. x 必须是字符串、字节或字节组
  4. int(x, base) -> integer 无论 base 等于几,得出来的都是十进制的整数,也就是base 中的几进制是限制 x 的,通过此运算得出对应的十进制

例如上面的例子:

>>> int('0b100', base=0)
4

0b 代表二进制的意思,base = 0,由于有 0b 系统自己可以识别出是二进制,故输出的是 4

若没有 0b 哪


>>> int('100', base=0)
4

在这里插入图片描述

这样就一目了然了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值