리스트 원소 삭제 (del)fruits = ['apple', 'banana', 'orange', 'grapes']del fruits[1]print(fruits) # ['apple', 'orange', 'grapes']----------------fruits = ['apple', 'banana', 'orange', 'grape']del fruits[1:3]print(fruits) # ['apple', 'grapes'] 리스트 원소 합(sum)nums = [1, 2, 3, 4, 5]print(sum(nums)) # 15 출력 리스트 원소 최댓값 최솟값(min(), max())nums = [1, 2, 3, 4, 5, 6, 7]print("max: ", max(nums))print("min: ", min(nu..