Software Engineering :: Programming :: Languages :: Python :: Example Code ⪼ Made with 💜 by Polyglot. .. valuesum.py input = [3, "a", 100, "b", 200, "c", 300] value_count = input[0] dict_values = input[1:] output_dictionary = { "a": 100, "b": 200, "c": 300 } sum(output_dictionary.values())