标签: python nested-lists
我想将元组列表转换为嵌套列表 例如, [(1,2),(3,4)]应该成为[[1,2 ,, [3,4]]
尝试了这个但没有帮助:
list1 = [list(i) for i in var1]
其中var1是元组列表。
答案 0 :(得分:-1)
你可以做
console.log(1 && 2 && 3); // 3 console.log(1 && 0 && null); // 0