본문 바로가기
● 알고리즘, 자료구조/2021 알고리즘

a = map(int,input().split()) / a = list(map(int,input().split())) 차이

by 0ver-grow 2021. 2. 16.
반응형
>>> a = map(int,input().split())
1 2 3
>>> a
<map object at 0x000001F835236B80>
>>> type(n)
<class 'map'>
>>> a = list(map(int,input().split()))
1 2 3
>>> a
[1, 2, 3]
>>> n[0]
1
>>> type(n)
<class 'list'>

 

반응형