Python 程序用于反转列表中的一个范围
当需要反转列表中的一个给定范围时,它会进行迭代,并且使用冒号(:)运算符和切片来反转它。
示例
下面是对同一内容的演示
my_list = ["Hi", "there", "how", 'are', 'you'] print("The list is : ") print(my_list) m, n = 2, 4 my_result = [] for elem in my_list: my_result.append(elem[m : n + 1]) print("The sliced strings are : " ) print(my_result)
输出
The list is : ['Hi', 'there', 'how', 'are', 'you'] The sliced strings are : ['', 'ere', 'w', 'e', 'u']
释义
定义一个列表,并显示在控制台上。
定义两个具有值的变量。
定义一个空列表。
对原始列表进行迭代,并将元素追加到空列表中。
这是使用冒号(:)运算符和从给定变量范围中访问元素来完成的。
结果显示在控制台上。
广告