Answers for "dictionary with map python"

0

dict map()

List = [H4, C9, S4, D2]
Dictionary  = {key: int(value) for key, value in List}

# Output:
# {'H': 4, 'C': 9, 'S': 4, 'D': 2}
Posted by: Guest on August-17-2021

Code answers related to "dictionary with map python"

Python Answers by Framework

Browse Popular Code Answers by Language