Python:单词列表;希望创建单词的所有阴(类似于数字),但每个解决方案限制为3个单词:
我正在尝试显示单词列表的所有可能
排列 一两个 三个 ...
所有的临时。但是,如果我用英语写出所有数字(零 - 九),我仍然想每个解决方案只限制为3个单词...
我需要能够为任何单词做到这一点。
我敢肯定,使用Itertools.combinations使用类似的内容可能相当简单,但我无法完全正确地理解语法。所以我还没有任何代码。
I'm trying to display all possible permutations of a list of words, for example if I have one two three I want to get:
one two three
one three two
three two one
...
All perumtations. HOWEVER if i have all numbers written out in English (zero - nine) I STILL WANT TO LIMIT to only 3 words per solution...
I need to be able to do this for any set of words.
I'm sure its probably fairly simple using something like itertools.combinations but I can't quite get the syntax right. So i dont have any code yet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该做:
This should do: