파이썬 리스트 섞기, 정렬, 역순 suffle sort reverse reversed
리스트 섞기 random.suffle() 리스트를 섞을 때는 random 모듈의 suffle() 함수를 사용합니다. numbers = [1,2,3,4,5] strings = ['a', 'b', 'c', 'd'] random.shuffle(numbers) random.shuffle(strings) print(numbers) print(strings) 더보기 [4, 1, 3, 5, 2] ['d', 'a', 'b', 'c'] 정렬하기 sort() 정렬할 때는 sort() 를 사용하고 기본은 오름차순입니다. 내림차순으로 정렬하고자 할 때는 sort(reverse=True) 를 사용합니다. numbers = [1,2,3,4,5] strings = ['a', 'b', 'c', 'd'] numbers.sort() s..