标签: python dictionary tuples
假设我有词典:
a={1:2,2:3}
和
b={3:4,4:5}
我想制作一个元组:
t=({1:2,2:3},{3:4,4:5})
答案 0 :(得分:3)
只需将它们放入tuple字面值:
tuple
t = (a, b) # or t = a, b
现在,print(t)返回({1: 2, 2: 3}, {3: 4, 4: 5})。
print(t)
({1: 2, 2: 3}, {3: 4, 4: 5})