Python
create a function tryhard and print out the dictionary as a
string form.
For example
def tryhard(d:dict):
#Code here
input: d = {'first': {}, 'second': {'1': {'move'}, '0': {'move',
'slow'}}, 'third': {'1': {'stop'}}}
output = " first movie: [ ]\n third movie: [('1', ['stop'])]\n
second movie: [('0', ['slow', 'move']), ('1', ['move'])]\n"