i am facing an issue with Dictionaries in python. When i am printing the dictionary it is giving me output of only one dictionary. Apologies for poor question. as a newbie , i am trying to learn python.
atom1 = {
    'first_name':'Alfa',
    'last_name':'A.',
    'City':'Osaka'
}
atom2 = {
    'first_name':'Beta',
    'last_name':'B.',
    'City':'kyoto'
}
atom3 = {
    'first_name':'Gama',
    'last_name':'G.',
    'City':'L.A.'
}
p = {
    **atom1,**atom2,**atom3
}
print(p)
 
    