I have a dict containing files and their owners.
files = {
'Input.txt': 'Randy',
'Code.py': 'Stan',
'Output.txt': 'Randy'
}
How can I group the files with similar owners to get something like this
{'Randy': ['Input.txt', 'Output.txt'], 'Stan': ['Code.py']}.