import random code = ["HTML", "CSS", "JS"] random.shuffle(code) print(code)
시퀀스 순서 뒤섞기. (= 순서 랜덤 배치)
※ 시퀀스 : String, List, Tuple 등.
※ 원본이 바뀜. (※ 복사본 생성 후 변환 X)