1. startswith(): 判断字符串是否以某个子串开始,是则返回True,否则返回False 示例: my_str = 'hello world and my and test and python' # 1. startswith(): 判断字符串是否以某个子串开始,是则返回True,否则返回False print(my_str.startswith('hello')) # True print(my_str.startswith('hel')) # True print(my_str…
1.lstrip():删除左侧空白字符 实例: my_str = ' hello world and my and test and python ' # 原始字符串 print(my_str) # lstrip() 删除左侧空白字符 my_str1 = my_str.lstrip() print(my_str1) 结果: 2.rstrip() :删除右侧空白字符 实例: my_str = ' hello world and my and test and python ' # 原始字符串 pr…
下标/索引: a = "I'm interested in Python." print(a[4]) i # 英文的字符串每一个下标/索引对应一个字母(含标点) a = '我喜欢python' print(a[2]) 欢 # 中文字符串每一个下标/索引对应一个字(含标点) 索引从0开始,每个标点也算一位 切片: 序列[开始位置:结束位置:步长] ''' a b c d e f g h i j k index no. 0 1 2 3 4 5 6 7 8 9 10 ''' a = 'abc…
本文主要介绍了Python中列表(List)的详解操作方法,包含创建.访问.删除.排序.切片,乘等操作方法 1.创建列表:把逗号分隔的不同的数据项使用方括号括起来 list = [1,2,3,'James','Paul'] list = [i for i in range(10)] 2.添加元素: list.append() :尾部新增元素 >>> list = [1,2,3] >>> list.append(5) >>> list [1, 2, 3,…
#字符串常用语法name = "wang yan li"print(name.capitalize())#首字母大写print(name.count("n"))#统计字母print(name.center(50,"-"))#共50个字符,name放中间,其他用-补上print(name.endswith("li"))#判断字符串以什么结尾print(name.expandtabs(tabsize=30))#把字符串里的tab键…