gpt4 book ai didi

python - 在Python中显示一列中n个元素的排列的方法

转载 作者:行者123 更新时间:2023-12-01 05:00:10 26 4
gpt4 key购买 nike

我生成 3 元素的排列

import itertools
a = list(itertools.permutations(['a','b','c',],3))

并接收以下输出:

[('a', 'b', 'c'), ('a', 'c', 'b'), ('b', 'a', 'c'), ('b', 'c', 'a'), ('c', 'a', 'b'), ('c', 'b', 'a')]

我想让元素出现在垂直行中,没有括号、逗号和引号:

abcacbbac...

I tried to use join function

b=''.join(a) 

但是我收到了错误

TypeError: sequence item 0: expected str instance, tuple found

我的问题是如何使排列元素出现在列中?

最佳答案

您收到错误,因为 a 中的每个元素都是元组。为每个元组调用 ''.join() ,例如:

for item in a:
print(''.join(item))

关于python - 在Python中显示一列中n个元素的排列的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26420446/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com