dict = {
"name": "Tom",
"age": 47,
"langauge": "python",
"company": "microsoft"}
newdict = dict.fromkeys(dict, 3)
print(dict)
print(newdict)
'''
run:
{'name': 'Tom', 'age': 47, 'langauge': 'python', 'company': 'microsoft'}
{'name': 'Tom', 'age': 47, 'langauge': 'python', 'company': 'google'}
'''