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
You could simply use * which unpacks the dictionary keys. Example:
*
d = {'x': 1, 'y': 2} t = (*d,) print(t) # ('x', 'y')