python中字符串方法 name = "I teased at life as if it were a foolish game" print(name.capitalize())#首字母大写 print(name.count("a"))#查找字符串中a的个数 print(name.center(50,"-"))#长度为50将name放中间不够的用-补全 print(name.endswith("ex"))#字符串是否以e…
本文主要介绍了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,…