python中map对字典怎么用
发布网友
发布时间:2022-04-24 07:19
我来回答
共1个回答
热心网友
时间:2022-04-07 13:10
1、示例代码
amw = {1: 1, 2: 2, 3: 3, 4: 4}
bmw = map(int, amw)
print(map(int,{1:2,2:3,3:4}))
print(bmw)
2、实例结果
<map object at 0x000002D2F6CDA070>
<map object at 0x000002D2F6CDA0A0>