xxxxxxxxxx
# Assuming you have a dictionary called issue_dict
dict = {
'title1': ('number1', 'body1'),
'title2': ('number2', 'body2'),
'title3': ('number3', 'body3')
}
# To retrieve an item from the dictionary, use the key
item = issue_dict['title2']
print(item)