在Python中查找组合而不导入itertools
我希望在 Python 中完成以下任务而不导入任何模块。
我的代码包括
Two List
---------
list1=['aun','2ab','acd','3aa']
list2=['ca3','ba2','dca','aa3']
Function
---------
:
- 从 list1 生成 2 个项目组合
- 从 list2 生成 2 个项目组合
- 从 list1 和 list2 生成 2 个项目组合
我不需要打印这两个项目的所有组合
,但我想传递所有这 2 个项目组合进一步完成任务并显示结果
analysize R.. **ca3** .... and ... **2ab** // Combinations of two items from list1 and list2
Print analysize
I want following task to be done in Python without importing any modules.
My Code consists
Two List
---------
list1=['aun','2ab','acd','3aa']
list2=['ca3','ba2','dca','aa3']
Function
---------
Where it will:
- Generates 2 items combination from list1
- Generates 2 items combination from list2
- Generates 2 items combination from list1 and list2
I don't need to print these all combinations of two items
But I want to pass all these 2 items combinations to further task and show results
analysize R.. **ca3** .... and ... **2ab** // Combinations of two items from list1 and list2
Print analysize
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,您已经得到了如何使用
itertools
进行操作的答案。如果您想在不导入该模块的情况下执行此操作(无论出于何种原因......),您仍然可以查看 文档 并阅读源代码:
Well, you already got the answer how to do it with
itertools
. If you want to do it without importing that module (for whatever reason...), you could still take a look at the docs and read the source:and