Python 列表 insert() 方法Python 列表/数组方法实例把值 "orange" 作为第二个元素插入 fruits 列表:fruits = ['apple', 'banana', 'cherry']fruits.insert(1, "orange")完
Python 列表 index() 方法Python 列表/数组方法实例值 "cherry" 的位置是:fruits = ['apple', 'banana', 'cherry']x = fruits.index("cherry")完整实例:fruits = ['apple', '
Python 列表 extend() 方法Python 列表/数组方法实例把 cars 中的元素添加到 fruits 列表:fruits = ['apple', 'banana', 'cherry']cars = ['Porsche', 'BMW', 'Volvo']fruit
Python 列表 count() 方法Python 列表/数组方法实例返回 "cherry" 在 fruits 列表中出现的次数:fruits = ['apple', 'banana', 'cherry']x = fruits.count("cherry")完整实例
Python 列表 copy() 方法Python 列表/数组方法实例拷贝 fruits 列表:fruits = ['apple', 'banana', 'cherry', 'orange']x = fruits.copy()完整实例:fruits = ["apple", "bana
Python 列表 clear() 方法Python 列表/数组方法实例从 fruits 列表删除所有元素:fruits = ['apple', 'banana', 'cherry', 'orange']fruits.clear()完整实例:fruits = ["apple
Python 列表 append() 方法Python 列表/数组方法实例向 fruits 列表添加元素:fruits = ['apple', 'banana', 'cherry']fruits.append("orange")完整实例:fruits = ["apple", "
Python 字符串 zfill() 方法Python 字符串方法实例用零填充字符串,直到长度为 10 个字符:txt = "50"x = txt.zfill(10)print(x)完整实例:txt = "50"x = txt.zfill(10)print(x)
Python 字符串 upper() 方法Python 字符串方法实例大写字符串:txt = "Hello my friends"x = txt.upper()print(x)完整实例:txt = "Hello my friends"x = txt.upper()print(x)
Python 字符串 title() 方法Python 字符串方法实例将每个单词的首字母大写:txt = "Welcome to my world"x = txt.title()print(x)完整实例:txt = "Welcome to my world"x = tx
Python 字符串 swapcase() 方法Python 字符串方法实例将小写字母大写,大写字母小写:txt = "Hello My Name Is Elon"x = txt.swapcase()print(x)完整实例:txt = "Hello My Name
Python 字符串 strip() 方法Python 字符串方法实例删除字符串开头和结尾的空格:txt = " banana "x = txt.strip()print("of all fruits", x, "is my favorite")完整
Python 字符串 startswith() 方法Python 字符串方法实例检查字符串是否以 "Hello" 开头:txt = "Hello, welcome to my world."x = txt.startswith("Hello")print(x)完整实例:t
Python 字符串 splitlines() 方法Python 字符串方法实例将字符串拆分为一个列表,其中每一行都是一个列表项:txt = "Thank you for your visiting\nWelcome to China"x = txt.s
Python 字符串 split() 方法Python 字符串方法实例将字符串拆分成一个列表,其中每个单词都是一个列表项:txt = "welcome to China"x = txt.split()print(x)完整实例:txt = "wel