First column of each row is a name of the company
in python
thisdict = {
"Amazon": 123456,
"myntrs": 6748574,
"google": 196422333,
"yahoo" :45667
}
for x in thisdict:
print(x," : ",thisdict[x])
print("\n\nonly company names : ")
for x in thisdict:
print(x)
Get Answers For Free
Most questions answered within 1 hours.