欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

python 中的int()函數(shù)怎么用

 更新時(shí)間:2017年10月17日 11:10:29   投稿:mrr  
int() 函數(shù)用于將一個(gè)字符串會(huì)數(shù)字轉(zhuǎn)換為整型。接下來通過本文給大家介紹python 中的int()函數(shù)的相關(guān)知識(shí),感興趣的朋友一起看看吧

int(x, [base])

功能:

函數(shù)的作用是將一個(gè)數(shù)字或base類型的字符串轉(zhuǎn)換成整數(shù)。

函數(shù)原型:

int(x=0)
int(x, base=10),base缺省值為10,也就是說不指定base的值時(shí),函數(shù)將x按十進(jìn)制處理。

適用Python版本:

Python2.x
Python3.x

注意:

1. x 可以是數(shù)字或字符串,但是base被賦值后 x 只能是字符串
2. x 作為字符串時(shí)必須是 base 類型,也就是說 x 變成數(shù)字時(shí)必須能用 base 進(jìn)制表示

Python英文文檔解釋:

class int(x=0)
class int(x, base=10)
Return an integer object constructed from a number or string x, 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 radix base. Optionally, the literal can be preceded by + or - (with no space in between) and surrounded by whitespace. A base-n literal consists of the digits 0 to n-1, with a to z (or A to Z) having values 10 to 35. The default base is 10. The allowed values are 0 and 2–36. Base-2, -8, and -16 literals can be optionally prefixed with 0b/0B, 0o/0O, or 0x/0X, as with integer literals in code. Base 0 means to interpret exactly as a code literal, so that the actual base is 2, 8, 10, or 16, and so that int('010', 0) is not legal, while int('010') is, as well as int('010', 8).
The integer type is described in Numeric Types — int, float, complex.
Changed in version 3.4: If base is not an instance of int and the base object has a base.__index__ method, that method is called to obtain an integer for the base. Previous versions used base.__int__ instead of base.__index__.
Changed in version 3.6: Grouping digits with underscores as in code literals is allowed.

代碼實(shí)例:

1. x 是數(shù)字的情況:

int(3.14)      # 3
int(2e2)       # 200
int(100, 2)     # 出錯(cuò),base 被賦值后函數(shù)只接收字符串

2. x 是字符串的情況:

int('23', 16)   # 35
int('Pythontab', 8)   # 出錯(cuò),Pythontab不是個(gè)8進(jìn)制數(shù)

3. base 可取值范圍是 2~36,囊括了所有的英文字母(不區(qū)分大小寫),十六進(jìn)制中F表示15,那么G將在二十進(jìn)制中表示16,依此類推....Z在三十六進(jìn)制中表示35

int('FZ', 16)   # 出錯(cuò),F(xiàn)Z不能用十六進(jìn)制表示
int('FZ', 36)   # 575

4. 字符串 0x 可以出現(xiàn)在十六進(jìn)制中,視作十六進(jìn)制的符號(hào),同理 0b 可以出現(xiàn)在二進(jìn)制中,除此之外視作數(shù)字 0 和字母 x

int('0x10', 16) # 16,0x是十六進(jìn)制的符號(hào)
int('0x10', 17) # 出錯(cuò),'0x10'中的 x 被視作英文字母 x
int('0x10', 36) # 42804,36進(jìn)制包含字母 x

總結(jié)

以上所述是小編給大家介紹python 中的int()函數(shù),希望對(duì)大家有所幫助,如果大家有任何疑問請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)腳本之家網(wǎng)站的支持!

相關(guān)文章

  • Python實(shí)現(xiàn)字符型圖片驗(yàn)證碼識(shí)別完整過程詳解

    Python實(shí)現(xiàn)字符型圖片驗(yàn)證碼識(shí)別完整過程詳解

    這篇文章主要介紹了Python實(shí)現(xiàn)字符型圖片驗(yàn)證碼識(shí)別完整過程詳解,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-05-05
  • python滲透測(cè)試linux密碼激活的示例

    python滲透測(cè)試linux密碼激活的示例

    這篇文章主要介紹了python滲透測(cè)試linux密碼激活的相關(guān)知識(shí),通過一個(gè)crypt的示例給大家介紹的非常詳細(xì),對(duì)大家學(xué)習(xí)python滲透知識(shí)有很大的幫助,需要的朋友可以參考下
    2021-05-05
  • numpy創(chuàng)建單位矩陣和對(duì)角矩陣的實(shí)例

    numpy創(chuàng)建單位矩陣和對(duì)角矩陣的實(shí)例

    今天小編就為大家分享一篇numpy創(chuàng)建單位矩陣和對(duì)角矩陣的實(shí)例,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧
    2019-11-11
  • python中sleep函數(shù)用法實(shí)例分析

    python中sleep函數(shù)用法實(shí)例分析

    這篇文章主要介紹了python中sleep函數(shù)用法,實(shí)例分析了sleep函數(shù)的功能及使用技巧,非常具有實(shí)用價(jià)值,需要的朋友可以參考下
    2015-04-04
  • Python爬蟲基本庫request的基本使用

    Python爬蟲基本庫request的基本使用

    這篇文章主要介紹了Python爬蟲基本庫request的基本使用,urllib庫使用繁瑣,比如處理網(wǎng)頁驗(yàn)證和Cookies時(shí),需要編寫Opener和Handler來處理。為了更加方便的實(shí)現(xiàn)這些操作,就有了更為強(qiáng)大的requests庫,需要的朋友可以參考下
    2023-07-07
  • Python第三方包之DingDingBot釘釘機(jī)器人

    Python第三方包之DingDingBot釘釘機(jī)器人

    這篇文章主要介紹了Python第三方包之DingDingBot釘釘機(jī)器人,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-04-04
  • python爬取網(wǎng)站數(shù)據(jù)保存使用的方法

    python爬取網(wǎng)站數(shù)據(jù)保存使用的方法

    這篇文章主要介紹了使用Python從網(wǎng)上爬取特定屬性數(shù)據(jù)保存的方法,其中解決了編碼問題和如何使用正則匹配數(shù)據(jù)的方法,詳情看下文
    2013-11-11
  • python requests指定出口ip的例子

    python requests指定出口ip的例子

    今天小編就為大家分享一篇python requests指定出口ip的例子,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧
    2019-07-07
  • Pandas創(chuàng)建DataFrame提示:type?object?'object'?has?no?attribute?'dtype'解決方案

    Pandas創(chuàng)建DataFrame提示:type?object?'object'?has?n

    Pandas數(shù)據(jù)幀(DataFrame)是二維數(shù)據(jù)結(jié)構(gòu),它包含一組有序的列,每列可以是不同的數(shù)據(jù)類型,這篇文章主要給大家介紹了關(guān)于Pandas創(chuàng)建DataFrame提示:type?object?‘object‘?has?no?attribute?‘dtype‘的解決方案,需要的朋友可以參考下
    2023-02-02
  • pip安裝python庫的方法總結(jié)

    pip安裝python庫的方法總結(jié)

    在本篇文章里小編給大家分享了關(guān)于使用pip安裝python庫的幾種常用方法,有需要的朋友們可以參考下。
    2019-08-08

最新評(píng)論