序列是Python中最基本的数据结构。序列中的每个元素都分配一个数字 - 它的位置,或索引,第一个索引是0,第二个索引是1,依此类推。
序列都可以进行的操作包括索引,切片,加增加、删除、检查、替换。
一 列表:
列表是最常用的Python数据类型,它可以作为一个方括号内的逗号分隔值出现。
创建一个列表,只要把逗号分隔的不同的数据项使用方括号括起来即可。如下所示:
list1 = ['Google', 'Runoob', 1997, 2000];
list2 = [1, 2, 3, 4, 5 ];
list3 = ["a", "b", "c", "d"];
二 find :
描述
find() 方法检测字符串中是否包含子字符串 str ,如果指定 beg(开始) 和 end(结束) 范围,则检查是否包含在指定范围内,如果指定范围内如果包含指定索引值,返回的是索引值在字符串中的起始位置。如果不包含索引值,返回-1。
语法:
ind()方法语法:
str.find(str, beg=0, end=len(string))
str -- 指定检索的字符串
实例
str1 = "Runoob example....wow!!!"
str2 = "exam";
print (str1.find(str2))
7
print (str1.find(str2, 5))
7
print (str1.find(str2, 10))
-1
二、index
描述
index() 函数用于从列表中找出某个值第一个匹配项的索引位置。
index()方法语法:
KeyboardInterrupt
aList = [123, 'xyz', 'zara', 'abc']
print "Index for xyz : ", aList.index( 'xyz' )
File "<stdin>", line 1
print "Index for xyz : ", aList.index( 'xyz' )
^
SyntaxError: invalid syntax
print ("Index for xyz : ", aList.index( 'xyz' )
...
... print ("Index for xyz : ", aList.index( 'xyz' )
KeyboardInterrupt
print ("Index for xyz : ", aList.index( 'xyz' ) )
Index for xyz : 1
print ("Index for zara : ", aList.index( 'zara' ))
Index for zara : 2
三、count
count() 方法用于统计某个元素在列表中出现的次数。
语法:
count()方法语法: list.count()
例子:>>> aList = [123, 'xyz', 'zara', 'abc', 123]
print("Count for 123 : ", aList.count(123))
Count for 123 : 2
print("Count for zara : ", aList.count('zara'))
Count for zara : 1
四、replace
用于替换想要替换的字符串
实例
str = ("this is string example....wow!!! this is really string")
print(str.replace("is", "was"))thwas was string example....wow!!! thwas was really string
五、split
描述
Python split() 通过指定分隔符对字符串进行切片
格式
str.split(" ")#str名字
实例
str = ("this is string example....wow!!! this is really string")
str.split(" ")#str名字['this', 'is', 'string', 'example....wow!!!', 'this', 'is', 'really', 'string']
六、capitalize
描述
把字符串的第一个字符大写
str.capitalize()
实例
str.capitalize()
'This is string example....wow!!! this is really string'
七、title
描述
把字符串的每个单词首字母大写
格式
ster.title()
描述
str.title()
'This Is String Example....Wow!!! This Is Really String'
八、startswith
描述
检查字符串是否是以 什么为什么 开头, 是则返回 True,否则返回 False
格式
SyntaxError: invalid character in identifier
str.startswith(is)
File "<stdin>", line 1
str.startswith(is)
^
SyntaxError: invalid syntax
str.startswith("is")
False
九、endswith
描述
检查字符串是否是以 什么为什么 结尾, 是则返回 True,否则返回 False
格式
str.endswith()
实例
str = ("this is string example....wow!!! this is really string")
str.endswith("string")
True
十、lower
描述
转换 列表 中所有大写字符为小写
格式
str.lower()
实例
str = ("this is string example....wow!!! this is really string")
str.lower()
'this is string example....wow!!! this is really string'
十一、upper
描述
转换 列表 中所有小写字符为大写
实例
'this is string example....wow!!! this is really string'
str = ("this is string example....wow!!! this is really string")
str.upper()
'THIS IS STRING EXAMPLE....WOW!!! THIS IS REALLY STRING'
十二、ljust
描述
返回一个原字符串左对齐,并使用空格填充至长度 width 的新字符串
格式
str.ljust()
实例
image.png
十三、rjust
返回一个原字符串右对齐,并使用空格填充至长度 width 的新字符串
格式
str.rjust()
实例
image.png
十四、center
返回一个原字符串居中,并使用空格填充至长度 width 的新字符串
格式
str.center()
实例
str = ("this is string really string")
str.center(20,"*")
'this is string really string'
十五、lstrip
删除 列表 左边的空白字符
格式
str.lstrip()
实例
str = (" this is string really string")
str.lstrip()
'this is string really string'
十六、rstrip
删除 列表中 字符串末尾的空白字符
格式
str.rstrip()
实例
str = (" this is string really string ")
str.rstrip()
' this is string really string'
十八、partition
按要求分割成三部分,前,和后
格式
str.partition()
实例
image.png
十九、rpartition
类似于 partition()函数,不过是从右边开始.
*str.rpartition()
实例
image.png
二十、splitlines
按照行分隔,返回一个包含各行作为元素的列表
格式
str.splitlines()
实例
image.png
二十一、isalpha
如果 输入值 所有字符都是字母 则返回 True,否则返回 False
格式
str.isalpha()
实例
image.png
二十三、isalnum
如果 输入值 所有字符都是字母或数字 则
返回 True,否则返回 False
格式
str.isalnum()
实例
image.png
二十四、isspace
如果 str 中只包含空格,则返回 True,否则返回 False
格式
str.isspace()
实例
image.png
二十五、join
str 中每个字符后面插入str,构造出一个新的字符串
格式
str.join(-)
实例
image.png
二十六 列表增加
指定索引位置添加数据------------->>-: 列表.insert(位置, 要添加的元素)
image.png
· 在列表的末尾追加数据------------->>-: 列表.append(要添加的元素)
image.png
· 添加一堆数据---------------------->>-: 列表.extend([元素,元素,元素,元素])
image.png
二十七 删
· 删除一个指定的元素--------------->>-: 列表.remove(元素)
image.png删除最后一个元素----------------->>-: 列表.pop()
image.png
指定索引删除一个元素------------>>-: 列表.pop(索引)
image.png
· 清空列表-------------------------->>-: 列表.clear()
image.png
改
修改元素-------------------------->>-: 列表[索引] = "将要被修改成的元素" image.png查:
· 取出一个元素--------------------->>-: 变量=列表[索引]
排序:
· 升序排列元素--------------------->>-: 列表.sort()
qwe=["1,2,3,5,6,4,8,7,2,1"]
qwe.sort()
print(qwe)
['1,2,3,5,6,4,8,7,2,1']
· 降序排列元素--------------------->>-: 列表.sort(reverse=True)
image.pngin的操作
image.png
网友评论