리스트 (list) [ , ] 리스트의 다양한 생성 방법 (Create) 빈 리스트 생성empty_list = []print(empty_list) # [] 출력 요소를 직접 지정하여 리스트 생성numbers = [1, 2, 3, 4, 5]fruits = ["apple", "banana", "cherry"]mixed_list = [1, "hello", True, 3.14]print(numbers) # [1, 2, 3, 4, 5] 출력print(fruits) # ['apple', 'banana', 'cherry'] 출력print(mixed_list) # [1, 'hello', True, 3.14] 출력 list() 함수 활용list() 함수는 다른 시퀀스형 데이터 타입 (문자열, 튜플, range ..