Python – 增量切片连接在字符串列表中
当需要显示字符串列表中增量切片连接时,使用简单的迭代和列表切片。
下面是对此的演示 -
示例
my_list = ['pyt', 'is', 'all', 'fun'] print("The list is :") print(my_list) my_result = '' for index in range(len(my_list)): my_result += my_list[index][:index + 1] print("The result is :") print(my_result)
输出
The list is : ['pyt', 'is', 'all', 'fun'] The result is : pisallfun
解释
定义了一个列表并显示在控制台中。
创建了一个空字符串。
遍历列表,并将元素与连续元素连接起来。
此结果将分配给一个变量。
这是显示在控制台上的输出。
广告