728x90
map() 함수 활용하기
num_list = [1, 2, 3, 4, 5]
str_list = ['1', '2', '3', '4', '5']
num_to_str = list(map(str, num_list))
print(num_to_str) # >> ['1', '2', '3', '4', '5']
str_to_num = list(map(int, str_list))
print(str_to_num) # >> [1, 2, 3, 4, 5]
728x90
'Programming > Python' 카테고리의 다른 글
[Python] 2차원 리스트 초기화하기 (1) | 2021.08.11 |
---|---|
[Python] itertools 사용하기 (permutaions, product, combinations) (0) | 2021.08.09 |
[Python] Counter: list 요소 개수 세어서 dictionary로 출력 (0) | 2021.07.11 |
[Python] 딕셔너리 dictionary (0) | 2021.07.11 |
[Python] 반올림, 올림, 내림, 버림: round, ceil, floor, trunc (0) | 2021.07.07 |