D={'name':'hello'}output = {'n':'hello','a':'hello','m':'hello','e':'hello'}need this output write a python code without using list,tuple,append
d = {'name': 'Hello'}output = {}for char in d['name']: output[char] = 'hello'print(output)but i got this output={'H': 'hello', 'e': 'hello', 'l': 'hello', 'o': 'hello'}
I'm expecting output = {'n':'hello','a':'hello','m':'hello','e'='hello}