s = ["hello", "world"] print(s[::-1]) // ["world", "hello"]
리스트 . reverse() s = ["hello", "world"] print(s.reverse()) // ["world", "hello"]
s = ["hello", "world"] print(s.reverse()) // ["world", "hello"]