博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python数据类型
阅读量:6443 次
发布时间:2019-06-23

本文共 1766 字,大约阅读时间需要 5 分钟。

Python的逻辑运算符

数字运算符: + - / %
关系运算符:a==b, a>b, a<b, a!=b
赋值运算符:a=b(把b的值赋给a), +=, a+=b, -=,
=, /=
逻辑运算符: and, or, not, (if a==b and a!=10:)

1、 整型 int

a=10print(a)

2、 布尔值bool

布尔值分为两种,一种是 True,一种是 False

>=1 True<=0 False

3、 float 浮点值

a=3.141592653m = round(a,2) # 保留两位小数print(m)

round(float,ndigits)

float代表数字,ndigits代表精度
大的规则是四舍五入

4、字符串 str

'abc' "abc" '''abc'''

string = 'abcadefgahiagh'print(string)

5、find

查找字符串,如果找到就返回字符串开始的下标,如果没有找到则返回-1

print(string[0]) # 打印下标为0的值print(string[3]) # 打印下标为3的值print(string[:]) # 打印所有值result = string.find('def')print(result)# 3 返回下标3

6、 replace 替换

print(string.replace("a","AAA"))

7、split 分隔符

# join(可迭代对象) 一般为list字符串newlist = string.strip().split("a")print(newlist)print(" ### ".strip().join(newlist))

8、 strip()

去除字符串前后的空字符

string.strip()print("My string is : %s" % string)print("My string is : {0}".format(string)) # 推荐使用,效率最高print("hello" + "world")

9、列表

列表是有一系列特定顺序排列的元素组成的,
可以把字符串、数字、字典等任何对象加入到列表中,
其中的元素之间没有任何关系,列表也是自带下标的,默认从0开始

l = [1,2,3.1415926,'a','b','c',True,{"name":"zyy"}]print(l)# [1, 2, 3.1415926, 'a', 'b', 'c', True, {'name': 'zyy'}]

10、字典方法

字典有哪些常用方法呢

l.append("hello")print(l)# [1, 2, 3.1415926, 'a', 'b', 'c', True, {'name': 'zyy'}, 'hello']

11、 pop

删除元素 ,默认删除最后一个元素

l.pop()print(l)# [1, 2, 3.1415926, 'a', 'b', 'c', True, {'name': 'zyy'}]l.pop(2) # 删除下标为2的元素print(l)# [1, 2, 'a', 'b', 'c', True, {'name': 'zyy'}]

12、remove

删除元素,直接删除元素,remove(value)

# index(value) 查找元素对应的下标print(l.index("a"))# 2m = [1,34,234,54,543,5,533,4,5432]print(m)# [1, 34, 234, 54, 543, 5, 533, 4, 5432]m.sort()     #print(m)# [1, 4, 5, 34, 54, 234, 533, 543, 5432]m.reverse()print(m)# [5432, 543, 533, 234, 54, 34, 5, 4, 1]

13、 insert

插入新的元素 insert(index, value)

m.insert(3,"hello")print(m)

转载于:https://blog.51cto.com/shaoniana/2063418

你可能感兴趣的文章
Linux修改支持高并发TCP连接数
查看>>
自学鸟哥linux服务-samba文件共享服务
查看>>
[笔试面试]单链表如何检测有环,环入口,环长,环前长度——快慢指针法(百度JAVA面试)...
查看>>
为啥使用HTML5
查看>>
PXE无人值守自动安装RHEL5
查看>>
搭建ELK日志分析平台
查看>>
我的友情链接
查看>>
log4cpp编译安装 Centos
查看>>
NOIP提高组第3题(1995-2018)
查看>>
ORA-12560: TNS:protocol adapter error
查看>>
xfce4最小化安装
查看>>
一个DBA眼中的HBase
查看>>
读书笔记-基于IP的物联网架构技术与应用
查看>>
liferay调用mysql插入中文
查看>>
SVM数字识别
查看>>
spring 配置中 merge的使用
查看>>
5A成绩通过PMP,备考经验总结——姜飞
查看>>
我的友情链接
查看>>
项目三、基于PPTP技术的Linux ×××的构建
查看>>
优秀网站收集
查看>>