《转》python数据类型
转自 http://www.cnblogs.com/BeginMan/archive/2013/06/08/3125876.html
一、标准类型函数
cmp():比较大小
str():转换为字符串
type():类型
cmp (...) cmp (x, y) - > integer Return negative(负数) if x<y, zero( 0 ) if x = = y, positive(正数) if x>y. |
如下:
>>> cmp ( 5 , 3.2 ) 1 >>> cmp ( 3.5 , 8 ) - 1 |
二、转换工厂函数
存在精度损失
>>> int ( 1.847 ) 1 >>> long ( 42 ) 42L >>> float ( 42 ) 42.0 >>> complex ( 42 ) ( 42 + 0j ) >>> complex ( 2.4 , - 8 ) ( 2.3999999999999999 - 8j ) |
三、功能函数
用于数值运算:asb()、coerce()、divmod()、pow()、round()
asb():absolute:绝对的;完全的;专制的;n:绝对值
>>> abs ( - 1 ) 1 |
coerce():vt. 强制,迫使,
类型转换,但是提供了不依赖python解释器而是通过自定义两个数值类型转换。返回一个元祖,存在强制行为。
coerce(...)
coerce(x, y) -> (x1, y1)
Return a tuple consisting of the two numeric arguments converted to
a common type, using the same rules as used by arithmetic operations.
If coercion is not possible, raise TypeError.
>>> coerce ( 1 , 2 ) ( 1 , 2 ) >>> coerce ( 1.2 , 2l ) ( 1.2 , 2.0 ) >>> coerce ( 1.2 , 2 ) ( 1.2 , 2.0 ) >>> coerce ( 1 , 2.3 ) ( 1.0 , 2.2999999999999998 ) >>> coerce ( 1j , 123 ) ( 1j , ( 123 + 0j )) |
divmod():.divmod 整除求余、返回包含商和余数的元祖
>>> divmod ( 10 , 3 ) ( 3 , 1 ) >>> divmod ( 3 , 10 ) ( 0 , 3 ) >>> divmod ( 10 , 2.5 ) ( 4.0 , 0.0 ) |
pow():power of a number:指数的意思
pow()与**都可以实现指数运算,pow()先出生些。
>>> pow ( 2 , 5 ) 32 >>> 2 * * 5 32 |
round():四舍五入
round(...)
round(number[, ndigits]) -> floating point number
Round a number to a given precision in decimal digits (default 0 digits).
This always returns a floating point number. Precision may be negative.
>>> round ( 1.234 , 2 ) 1.23 >>> round ( 3.14 ) 3.0 >>> for each in range ( 10 ): print round (math.pi,each) 3.0 3.1 3.14 3.142 3.1416 3.14159 3.141593 3.1415927 3.14159265 3.141592654 |
四、仅用于整数的函数
oct():octonary number system 八进制字符串形式
>>> oct ( 255 ) '0377' |
hex():hexadecimal number system十六进制字符串形式
>>> hex ( 255 ) '0xff' |
ASCII码转换函数
ord():ordinal:序数,将字符转换成对应整数值
>>> ord ( 'A' ) 65 |
chr():char: 单个字符,数字对应当个ASCII字符
>>> chr ( 65 ) 'A' |
五、操作符
>>> x> = 80 and x< = 100 True >>> 80 < = x< = 100 True - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 总是写错: >>> 80 = |
六、致用
1、分数等级
def
result(x):
dic
=
{
9
:
'A'
,
8
:
'B'
,
7
:
'C'
,
6
:
'D'
}
myre
=int(
x)
/
10
for
obj
in
sorted
(dic.keys(),reverse
=
True
): #True 和False 表示是否逆序
if
myre>
=
obj:
out
=
dic[obj]
break
else
:
out
=
'F'
return
out
if
__name__
=
=
"__main__"
:
sorce
=
input
(
'Enter your sorce:'
)
print
'level:%s'
%
result(sorce)
《转》python数据类型的更多相关文章
- python 数据类型---布尔型& 字符串
python数据类型-----布尔型 真或假=>1或0 >>> 1==True True >>> 0==False True python 数据类型----- ...
- Python 数据类型及其用法
本文总结一下Python中用到的各种数据类型,以及如何使用可以使得我们的代码变得简洁. 基本结构 我们首先要看的是几乎任何语言都具有的数据类型,包括字符串.整型.浮点型以及布尔类型.这些基本数据类型组 ...
- day01-day04总结- Python 数据类型及其用法
Python 数据类型及其用法: 本文总结一下Python中用到的各种数据类型,以及如何使用可以使得我们的代码变得简洁. 基本结构 我们首先要看的是几乎任何语言都具有的数据类型,包括字符串.整型.浮点 ...
- Python数据类型及其方法详解
Python数据类型及其方法详解 我们在学习编程语言的时候,都会遇到数据类型,这种看着很基础也不显眼的东西,却是很重要,本文介绍了python的数据类型,并就每种数据类型的方法作出了详细的描述,可供知 ...
- Python学习笔记(五)--Python数据类型-数字及字符串
Python数据类型:123和'123'一样吗?>>> 123=='123'False>>> type(123)<type 'int'>>> ...
- python数据类型之元组、字典、集合
python数据类型元组.字典.集合 元组 python的元组与列表类似,不同的是元组是不可变的数据类型.元组使用小括号,列表使用方括号.当元组里只有一个元素是必须要加逗号: >>> ...
- 1 Python数据类型--
常见的Python数据类型: (1)数值类型:就是平时处理的数字(整数.浮点数) (2)序列类型:有一系列的对象并排或者排列的情况.如字符串(str),列表(list),元组(tuple)等 (3)集 ...
- Python数据类型和数据操作
python数据类型有:int,float,string,boolean类型.其中string类型是不可变变量,用string定义的变量称为不可变变量,该变量的值不能修改. 下面介绍python中的l ...
- Python数据类型(python3)
Python数据类型(python3) 基础数据类型 整型 <class 'int'> 带符号的,根据机器字长32位和64位表示的范围不相同,分别是: -2^31 - 2^31-1 和 - ...
- 二、Python数据类型(一)
一.Python的基本输入与输出语句 (一)输出语句 print() 示例: print('你好,Python') print(4+5) a = 10 print(a) 输出的内容可以是字符串,变量, ...
随机推荐
- opencv打开摄像头并新建窗口显示
几个程序使用的基本函数如下: ******************************************************************* cvCreateCameraCap ...
- json 报错415 400
JS操作JSON总结 $(function(){ $.ajax({ method: 'post', url: '/starMOOC/forum/getSectionList', dataType: ...
- 调试口:JTAG与SW-Debug Port
- ga统计
<script> (function (i, s, o, g, r, a, m) { i['GoogleAnalyticsObject'] = r; i[r] = i[r] || func ...
- JavaFX开发环境安装配置
JavaFX开发环境安装配置 从Java8开始,JDK(Java开发工具包)包括了JavaFX库. 因此,要运行JavaFX应用程序,您只需要在系统中安装Java8或更高版本. 除此之外,IDE(如E ...
- Apache配置 PHP 支持
1,在服务区安装PHP 解压 php 到纯英文路径目 2,添加 PHP处理模块 LoadModule php7_module C:/ProgramData/php/php7apache2_4.dl 3 ...
- akka-stream之异常处理
背景介绍 在项目中使用了akk-stream的source.queue功能,如下: Pair<SourceQueueWithComplete<Integer>, Source< ...
- oracle中的round()方法的用法
[oracle中的round()方法的用法] Round( ) 函数 传回一个数值,该数值是按照指定的小数位元数进行四舍五入运算的结果 oracle一般常用于计算表空间内存还有多少空间 语法 ROUN ...
- pandas读书笔记 算数运算和数据对齐
pandas最重要的一个功能是,它可以对不同索引的对象进行算数运算.在对象相加时,如果存在不同的索引对,则结果的索引就是该索引对的并集. Series s1=Series([,3.4,1.5],ind ...
- B 树 B+树
拜读了 http://blog.csdn.net/v_july_v/article/details/6530142, 自己总结下: B树的出发点是为了解决磁盘IO慢的问题,尽量再一个磁盘块中提供更 ...