5.
① weather = ["맑음", "눈", "흐림", "천둥번개", "비"] # ()를 []로 수정
② weather.append("안개") # "weather =" 삭제
③ weather.remove("천둥번개") # ["천둥번개"]를 "천둥번개"로 수정
④ print(weather[-4:-1]) # [-1:-4]를 [-4:-1]로 수정
6.
shopping_list = input("구매할 물건을 쉼표로 구분해 입력: ")
shopping_list = shopping_list.split(",")
sorted_result = sorted(shopping_list)
print("정렬된 쇼핑 목록:", sorted_result)
또는
print("정렬된 쇼핑 목록:", sorted(input("구매할 물건을 쉼표로 구분해 입력:").split(",")))