can the key of a dictionary be a string with more than one key code example
Example: dictionary multiple values per key
key = "somekey"
a.setdefault(key, [])
a[key].append(1)
key = "somekey"
a.setdefault(key, [])
a[key].append(1)