首页 > 代码库 > python基础之数据类型

python基础之数据类型

1.数据类型

python中的数据类型

    python使用对象模型来存储数据,每一个数据类型都有一个内置的类,每新建一个数据,实际就是在初始化生成一个对象,即所有数据都是对象。



2.字符串
2.1定义
定义:它是一个有序的字符的集合,用于存储和表示基本的文本信息,‘’或“”或‘’‘ ’‘’中间包含的内容称之为字符串

特性:
1.只能存放一个值
2.不可变
3.按照从左到右的顺序定义字符集合,下标从0开始顺序访问,有序
2.2字符串常用操作
msg=‘hello‘
移除空白 msg.strip()
分割 msg.split(‘|‘)
长度 len(msg)
索引 msg[3] msg[-1]
切片 msg[0:5:2] #0 2 4

字符工厂函数str()
#首字母大写
# x=‘hello‘
# print(x.capitalize())

#首字母大写
# x=‘hello‘
# print(x.title())
#所有字母大写
# x=‘hello‘
# print(x.upper())

# 居中显示
# x=‘hello‘
# print(x.center(30,‘#‘))

#统计某个字符的出现的次数,空格也算字符
# x=‘hel lo love‘
# print(x.count(‘l‘))
# print(x.count(‘l‘,0,4)) # 0 1 2 3

# x=‘hello ‘
# print(x.endswith(‘ ‘)) #取x的后面几位字符
# print(x.startswith()) #取x的前面几位字符

#查看字符中单字符的位置
# x=‘hello ‘
# print(x.find(‘e‘))
# print(x.find(‘l‘))

#格式化字符串
# msg=‘Name:{},age:{},sex:{}‘
# print(msg) #Name:{},age:{},sex:{}
# print(msg.format(‘egon‘,18,‘male‘))

python基础之数据类型