-
[Python] sorted 함수가 str과 int 를 정열하는 방법Python 2022. 1. 27. 17:16
str_numbers = ["6","10","2","11"] int_numbers = [6,10,2,11] print(sorted(str_numbers)) => ['10', '11', '2', '6'] print(sorted(int_numbers)) =>[2, 6, 10, 11]
'Python' 카테고리의 다른 글
[Python] *args, **kwargs 의 차이점과 사용 방법 (0) 2022.01.19 [Python] 소수를 표현하는 방법들 int, float() 와 decimal() (0) 2022.01.12 [Python] 하나로 sync, async 둘다 request 보내보자 httpx (0) 2022.01.10 [Python] iterable을 합쳐보자 itertools.chain() (0) 2022.01.10 [Python] 비동기 처리를 해보자 (0) 2022.01.10