易学智能's Archiver
易学智能论坛
›
Python开发
› python3中的map
shaoheshaohe
发表于 2019-4-20 15:42:52
python3中的map
arr = map(int, input().split())这句话进场看见,在python3中:
arr = map(int, input().split()) #2 4 6 8
print(arr) #output<map object at 0x0000025A09157F28>
这样输出就行:
arr = map(int, input().split()) #2 4 6 8
print(list(arr)) #output
页:
[1]
查看完整版本:
python3中的map