国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

python 中的int()函數怎么用

2020-01-04 16:36:22
字體:
來源:轉載
供稿:網友

int(x, [base])

功能:

函數的作用是將一個數字或base類型的字符串轉換成整數。

函數原型:

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

適用Python版本:

Python2.x
Python3.x

注意:

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

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.

代碼實例:

1. x 是數字的情況:

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

2. x 是字符串的情況:

int('23', 16)   # 35int('Pythontab', 8)   # 出錯,Pythontab不是個8進制數

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

int('FZ', 16)   # 出錯,FZ不能用十六進制表示int('FZ', 36)   # 575

4. 字符串 0x 可以出現在十六進制中,視作十六進制的符號,同理 0b 可以出現在二進制中,除此之外視作數字 0 和字母 x

int('0x10', 16) # 16,0x是十六進制的符號int('0x10', 17) # 出錯,'0x10'中的 x 被視作英文字母 xint('0x10', 36) # 42804,36進制包含字母 x

總結

以上所述是小編給大家介紹python 中的int()函數,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對VEVB武林網網站的支持!


注:相關教程知識閱讀請移步到python教程頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 阿荣旗| 镇巴县| 萝北县| 文昌市| 开原市| 昆明市| 晋宁县| 行唐县| 金塔县| 托克逊县| 巴马| 宜州市| 阿克陶县| 盐山县| 韩城市| 密云县| 新乡市| 左云县| 永州市| 祁连县| 南昌市| 柘荣县| 广平县| 永胜县| 天津市| 珲春市| 和政县| 霍城县| 安国市| 湖州市| 安福县| 太和县| 招远市| 新邵县| 中牟县| 盐山县| 南京市| 南康市| 久治县| 皮山县| 大厂|