목록Python/유용한 python 문법 (3)
일상 코딩
[링크] 파이썬 배열 회전, zip(), *, tuple()
https://comdoc.tistory.com/entry/Python-Zip-2%EC%B0%A8%EC%9B%90-%EB%B0%B0%EC%97%B4-%ED%9A%8C%EC%A0%84 Python Zip 2차원 배열 회전 1. zip 내장 함수(BIF) zip은 각 iterables의 요소들을 하나씩 모아 이터레이터를 만듭니다. iterable (이터러블) 멤버들을 한 번에 하나씩 돌려줄 수 있는 객체. 이터러블의 예로는 모든 (list, str, tuple 같 comdoc.tistory.com https://choichumji.tistory.com/74 [python] 2차원 리스트 90도 돌리기 def rotated(array_2d): list_of_tuples = zip(*array_2d[::-1])..
Python/유용한 python 문법
2021. 11. 13. 10:02
[링크] 파이썬 리스트, 튜플 정렬 sort(), sorted(), reverse()
https://zidarn87.tistory.com/25 파이썬 리스트, 튜플 정렬하기 - sort(), sorted(), reverse() 파이썬 정렬하기 - sort(), sorted(), reverse() sort() 기본값은 오름차순 정렬이고, reverse옵션 True는 내림차순으로 정렬하게 됩니다. a= [3, 1, 9, 7, 5] a.sort() print(a) [1, 3, 5, 7, 9] a= [3, 1,.. zidarn87.tistory.com
Python/유용한 python 문법
2021. 11. 13. 08:53