本站资源收集于互联网,不提供软件存储服务,每天免费更新优质的软件以及学习资源!

如何将嵌套列表中各个子列表所有元素组合成字符串_并按顺序输出?

网络教程 app 1℃

如何将嵌套列表中各个子列表所有元素组合成字符串_并按顺序输出

按顺序排列组合输出字符串

问题:

如何将嵌套列表中第一个列表中的第一个元素到最后一个列表中的最后一个元素,按顺序遍历并组合成字符串输出?

解答:

    分割列表:

    将嵌套列表拆分为多变量,分别为:

    a0 = strlst[0]a1 = strlst[1]a2 = strlst[2]a3 = strlst[3]a4 = strlst[4]

    计算元素数量:

    计算每个分割出的变量中的字符串数量:

    l0 = len(a0)l1 = len(a1)l2 = len(a2)l3 = len(a3)l4 = len(a4)

    计数器:

    初始化计数器并将计数限制为全部元素的组合数量:

    n0 = 0n1 = 0n2 = 0n3 = 0n4 = 0sum = l0 * l1 * l2 * l3 * l4count = 0

    遍历环:

    进入 while 循环,执行以下步骤,直到 count 达到其限制:

    while count < sum: # 使用满位进一的算法遍历计数器 … # 输出段,按需添加缩进并连接字符串 … # 更新计数器和 count …

    输出:

    循环完成后,将组合的字符串输出到控制台。

示例代码:

以下代码根据问题提供了示例输出:

strlst = [[‘cmd1’],[‘opt1-1′,’opt1-2’,”],[‘opt1-3’],[‘opt1-4’,”],[‘opt1-5’,”]]a0 = strlst[0]a1 = strlst[1]a2 = strlst[2]a3 = strlst[3]a4 = strlst[4]l0 = len(a0)l1 = len(a1)l2 = len(a2)l3 = len(a3)l4 = len(a4)n0 = 0n1 = 0n2 = 0n3 = 0n4 = 0sum = l0 * l1 * l2 * l3 * l4count = 0while count < sum: if n4 >= l4: n4 = 0 n3 += 1 if n3 >= l3:n3 = 0n2 += 1if n2 >= l2: n2 = 0 n1 += 1 if n1 >= l1: n1 = 0 n0 += 1 if n0 >= l0:n0 = 0 needoutput = ” if a0[n0] != ”: needoutput = needoutput + a0[n0] + ” else: needoutput = needoutput + a0[n0] if a1[n1] != ”: needoutput = needoutput + a1[n1] + ” else: needoutput = needoutput + a1[n1] if a2[n2] != ”: needoutput = needoutput + a2[n2] + ” else: needoutput = needoutput + a2[n2] if a3[n3] != ”: needoutput = needoutput + a3[n3] + ” else: needoutput = needoutput + a3[n3] if a4[n4] != ”: needoutput = needoutput + a4[n4] needoutput = needoutput.expandtabs(7) print(needoutput) n4 += 1 count += 1

输出:

cmd1 opt1-1 opt1-3 opt1-4 opt1-5cmd1 opt1-1 opt1-3 opt1-4cmd1 opt1-1 opt1-3 opt1-5cmd1 opt1-1 opt1-3cmd1 opt1-2 opt1-3 opt1-4 opt1-5cmd1 opt1-2 opt1-3 opt1-4cmd1 opt1-2 opt1-3 opt1-5cmd1 opt1-2 opt1-3cmd1 opt1-3 opt1-4 opt1-5cmd1 opt1-3 opt1-4cmd1 opt1-3 opt1-5cmd1 opt1-3

以上就是如何将嵌套列表中各个子列表所有元素组合成字符串,并按顺序输出?的详细内容,更多请关注范的资源库其它相关文章!

转载请注明:范的资源库 » 如何将嵌套列表中各个子列表所有元素组合成字符串_并按顺序输出?

喜欢 (0)