Python 字典 clear() 方法Python 字典方法实例删除 car 列表中的所有元素:car = { "brand": "Porsche", "model": "911", "year": 1963}car.clear()print(car)完整实例:car
Python 列表 sort() 方法Python 列表/数组方法实例以字母顺序对列表进行排序:cars = ['Porsche', 'BMW', 'Volvo']cars.sort()完整实例:cars = ['Porsche', 'BMW', 'Volvo']ca
Python 列表 reverse() 方法Python 列表/数组方法实例反转 fruits 列表的顺序:fruits = ['apple', 'banana', 'cherry']fruits.reverse()完整实例:fruits = ['apple', 'banana
Python 列表 remove() 方法Python 列表/数组方法实例删除 fruits 列表的 "banana" 元素:fruits = ['apple', 'banana', 'cherry']fruits.remove("banana")完整实例:fruits = [
Python 列表 pop() 方法Python 列表/数组方法实例删除 fruits 列表的第二个元素:fruits = ['apple', 'banana', 'cherry']fruits.pop(1)完整实例:fruits = ['apple', 'banana'
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