search
python numeric typesAug 07, 2017 pm 12:28 PM
pythonnumbertype

The following editor will bring you a brief discussion of digital types and processing tools in Python. The editor thinks it’s pretty good, so I’ll share it with you now and give it as a reference. Let’s follow the editor and take a look

Number type tools in python

Python provides a lot of advanced numerical programming for more advanced work Support and objects, including complete tools for numeric types:

1. Integers and floating point types,

2. Complex numbers,

3. Fixed-precision decimal numbers,

4. Rational fractions,

5. Sets,

6. Boolean type

7. Infinite integer precision

8. Various digital built-in functions and modules.

Basic number types

Python provides two basic types: integers (positive integers, negative integers) and floating point numbers (Note: Numbers with decimal parts), where in python we can use integers in multiple bases. And integers can be used with infinite precision.

The integer is expressed in decimal number string writing, and the floating point number is represented by a decimal point or scientific notation e. In the python2 version, integers are also divided into general integers (32 bits) and long integers (infinite precision). Long integers end with l. With python3, integers have only one form, with infinite precision.

Of course, integers in Python also appear in binary (0bxxxxxxxx), octal (0oxxxxxxxx), and hexadecimal (0x xxxxxxxx) forms.

Conversion between decimal numbers and other bases:


s=16
print(bin(s))
print(oct(s))
print(hex(s))

运行结果:
0b10000
0o20
0x10


print('{0:o},{1:x},{2:b}'.format(16,16,16))
print('%o,%x,%X'%(16,16,16))
运行结果:
20,10,10000
20,10,10

Conversion of other bases into decimal:


a=int('0b10000',2)
b=int('0o20',8)
c=int('0x10',16)
print(a)
print(b)
print(c)
运行结果:
16
16
16


print(eval('16'))
print(eval('0b10000'))
print(eval('0o20'))
print(eval('0x10'))
运行结果:
16
16
16
16

python expression operator

The expression is Mathematical symbols and operation symbols are written. The following table shows python expression operators and procedures:

##x&ybit and, set intersection##x>y##x+y,x-yAddition, subtraction, merge and deletex*y,x%y,x/y,x//yMultiplication, remainder, division, floor division-x,+xUnary subtraction~xBitwise complement (reverse)x**yPower operationx[i]Index, function callx[i:j:k]Shardingx(...)Calling functionx.attrCalling attributes(...)Tuple, expression, generator[...]List, list parsing{...}Dictionary ,sets,sets and dictionary parsing

:操作符在python2和python3中略有不同,python2中不等于用!=或》来表示,在python3中方法被取消,不等于就用!=来表示。

x

在python2中可以使用混合类型,在python3中比较混合类型大小是会报错的,


python2
a = 1 > 'a'
print a
运行结果:
False


python3<br>a=1 > &#39;a&#39;
print(a)
运行结果:
Traceback (most recent call last):
 File "C:/Users/jeff/PycharmProjects/python_file/practice/prac2.py", line 92, in <module>
 a=1 > &#39;a&#39;
TypeError: unorderable types: int() > str()

上面的表格也是程序运行的优先级表格,自上而下,优先级越来越高,当然如果想要改变优先级,要是用括号来做。括号在python数字操作中经常会使用到,他不仅强制程序按照你想要的顺序运行,同时也增加了程序的可读性。

混合类型

这里指的是混合数字类型,比如整数和浮点数相加的结果是什么呢?

其实在python中首先将备操作对象转换成其中最复杂的操作对象的类型,然后再进行相同类型的对象进行数学运算。


print(1+0.2)

运行结果:
1.2

注:除此之外,在python中还存在着运算符重载功能比如‘+',除了做数字加法运算,在字符串拼接时也适用‘+'。

数字显示格式

由于一些硬件限制,数字显示有时看起来会很奇怪,例如:


在命令行中操作
>>>num = 1 / 3.0
>>>num
0.333333333333333333331
在pycharm中print操作
num = 1/3.0
print(num)
运行结果:
0.3333333333333333
num = 1/3.0
print(&#39;{0:4.2f}&#39;.format(num))#4是前面空格格数,2是保留小数位
运行结果:
0.33

在命令行中显示的形式叫做默认的交互式回显,而print打印的叫做友好式回显,与reper和str的显示是一致的:


>>>num = 1/3.0
>>>repr(num)
0.333333333333333333331
>>>str(num)
0.3333333333333333

除法:传统除法,floor除法,真除法和截断除法

除法是python2与python3之间非常重要的一个变化。

一、除法操作符

python有两种除法操作符‘x/y'与‘x//y',其中‘/'在python2中是传统除法,即省略浮点数小数部分,然而显示整数,在python3中,除法就是真除法,即无论什么类型都会保留小数部分;‘//'也叫作floor除法,在python3中省略小数部分,剩下最小的能整除的整数部分,操作数如果是浮点数则结果显示浮点数,python2中整数截取整数,浮点数执行保留浮点数。

例:在python2中:

在python3中:

在python2中若是想要使用python3中的'/'则需要调用模块来完成,在python2中调用pision模块:

截断除法与floor除法一样都是取最接近整数向下取整,这使得在负数时也生效,即-2.5则为-3,而不是-2,想要得到真正的截取需要调用math模块:

python还支持复数的计算:

还支持compliex(real,imag)来创建复数。

更多复数计算参考模块cmath的参考手册。

位操作


x=1
print(x<<2)
print(x|2)
print(x&2)
print(x^2)
运行结果:
3
3

python3中使用bit_length查看二进制位数:


x=99
print(bin(x))
print(x.bit_length())
print(len(bin(x))-2)
运行结果:
0b1100011
7
7

内置数学工具

math模块


import math
print(math.pi)
print(math.e)
print(math.sin(110))
print(math.sqrt(144))
print(pow(2,3))
print(abs(-50))
print(sum((1,2,3)))
print(max(1,2,3))
print(min(1,2,3))
运行结果:
3.141592653589793
2.718281828459045
-0.044242678085070965
12.0
8
50
6
3
1

对于截取浮点数的操作有四种方式:


print(math.floor(2.577))
print(math.trunc(2.577))
print(round(2.577))
print(int(2.577))
运行结果:
2
2
3
2

random模块

获取随机数


import random
print(random.random())
print(random.randint(1,100))
运行结果:
0.9534845221467178
79

其他数字类型介绍

除了常见的整型与浮点数,还有一些其他较为常见的数字类型。

一、小数数字

虽然学习python有一段时间了,但是确实没有太明白浮点数与小数的区别,其实小数在某种程度上就是浮点数,只不过他有固定的位数和小数点,在python中有专门的模块导入小数,from decimal import Decimal。

注:浮点数缺乏精确性。


print(0.1+0.1+0.1-0.3)
输出结果:
5.551115123125783e-17

我想看到这里的兄弟可能已经慌了,然后使用python解释器试了一下,果然结果就是5.551115123125783e-17虽然很接近0,但是不是0。所以说浮点型本质是缺乏精确性。要精确就需要调用from decimal import Decimal。


from decimal import Decimal
print(Decimal(&#39;0.1&#39;)+Decimal(&#39;0.10&#39;)+Decimal(&#39;0.10&#39;)-Decimal(&#39;0.30&#39;))
运行结果:
0.00

可以看出来小数相加也是自动升级为位数最多的。

注:浮点数创建小数对象,由于浮点数本身可能就不精确所以转换会产生较多的位数。


from decimal import Decimal
print(Decimal.from_float(1.88))
print(Decimal.from_float(1.25))
输出结果:
1.87999999999999989341858963598497211933135986328125
1.25

二、分数

分数类型与小数极为相似,他们都是通过固定小数位数和指定舍入或截取策略控制精度。分数使用Fraction模块导入。


from fractions import Fraction
x=Fraction(1,3)
y=Fraction(2,3)
print(x+y)
输出结果:
1

注:对于内存给定有限位数无法精确表示的值,浮点数的局限尤为明显。分数和小数都比浮点数更为准确。

三、集合

集合是无序元素组成,打印时顺序也是无序的,但是集合中没有重复的元素,所以我们常使用集合去重,尤其是在涉及数字和数据库的工作中。

我们有两个集合a与b:

a与b的交集为a.intersection(b)或者a & b。

a与b的差集为a.difference(b)或者a-b。

a与b的并集为a.union(b)或者a|b。

反向差集与对称差集(并集减去交集)为a.symmetric_difference(b)或者a^b。

合并为a.update(b),a.difference_update(b)求差集并赋值给a集合

删除元素可用discard(元素)或者remove(元素),pop()是随机删除一个元素,add插入一个项目。

注:set是可变数据类型,但是set里面的元素一定是不可变数据类型。


x={&#39;a&#39;,&#39;c&#39;,&#39;b&#39;}
y={&#39;a&#39;,&#39;g&#39;,&#39;b&#39;}
z={&#39;a&#39;}
print(&#39;a&#39; in x)
print(x-y)
print(x|y)
print(x&y)
print(x^y)
print(z<y)


x={&#39;a&#39;,&#39;c&#39;,&#39;b&#39;}
y={&#39;a&#39;,&#39;g&#39;,&#39;b&#39;}
z={&#39;a&#39;}
print(x.intersection(y))
print(x.union(y))
x.add(&#39;s&#39;)
print(x)
print(x.pop())
x.update({&#39;w&#39;,&#39;e&#39;,&#39;o&#39;})
print(x)
print(x)
运行结果:
{&#39;a&#39;, &#39;b&#39;}
{&#39;c&#39;, &#39;a&#39;, &#39;b&#39;, &#39;g&#39;}
{&#39;a&#39;, &#39;b&#39;, &#39;c&#39;, &#39;s&#39;}
a
{&#39;o&#39;, &#39;c&#39;, &#39;s&#39;, &#39;w&#39;, &#39;b&#39;, &#39;e&#39;}
{&#39;o&#39;, &#39;c&#39;, &#39;s&#39;, &#39;w&#39;, &#39;b&#39;, &#39;e&#39;}

注:在python中{}是空字典,如果想要定义空集合要用set()。

集合要是添加列表等可变类型则会报错。


x={&#39;a&#39;,&#39;c&#39;,&#39;b&#39;}
l=[1,2,3]
x.add(l)
print(x)
运行结果:
Traceback (most recent call last):
 File "C:/Users/jeff/PycharmProjects/python_file/practice/prac2.py", line 111, in <module>
 print(x.add(l))
TypeError: unhashable type: &#39;list&#39;

正确的添加序列方式为添加元组。


x={&#39;a&#39;,&#39;c&#39;,&#39;b&#39;}
l=(1,2,3)
x.add(l)
print(x)
运行结果:
{&#39;c&#39;, &#39;b&#39;, &#39;a&#39;, (1, 2, 3)}

定义不可操作的集合使用frozenset定义集合。

字典解析:

与列表解析相类似,集合也是可迭代对象,所以可以使用for循环遍历。


x={1,2,3}
print({i ** 2 for i in x})
运行结果:
{1, 9, 4}

四、布尔值

python的一个数据类型,有两个值Ture 与 False。


print(type(True))
print(True == 1)
print(True is 1)
print(True + 1)
运行结果:
<class &#39;bool&#39;>
True
False
2

集合和bool值,还是比较常见的类型,在基础学习里也有涉及,在这里就不多写了。

python中的数字在程序编写时广泛使用,今后还会更深层次的学习python的扩展库。

Operator Description
yield Generator function sending protocol
lambda args:expression Generate anonymous function
x if y else z Ternary expression
x or y Logical OR (there is a short-circuit algorithm)
x and y Logical AND (there is a short-circuit algorithm)
not x Logical NOT
x in y , x not in y Member relationship
x is y ,x is not y Object entity test
xy,x>=y,x==y,x!=y Compare sizes
x|y Bitwise OR, set union
x^y bit XOR, set symmetric difference
Shift left or right by y bits

The above is the detailed content of python numeric types. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!