清单1:
['buying','maint']
清单2:
[['med', 'vhigh', 'low', 'high'],['med', 'small', 'big']]
Expected_output:
[['buying_med', 'buying_vhigh','buying_low','buying_high'],['maint_med','maint_small','maint_big']]
请让我知道如何在python 3中执行此操作。
答案 0 :(得分:0)
这听起来像是一个家庭作业问题所以我只会给你一个建议,让你朝着正确的方向前进。首先尝试使用2 for循环实现解决方案。如果您想改善答案,请查看static initialization order fiasco。