Sorry for this basic question but my searches on this are not turning up anything other than how to get a dictionary\'s key based on its value which I would prefer not to us
For python 3 If you want to get only the keys use this. Replace print(key) with print(values) if you want the values.
for key,value in my_dict: print(key)