item_list = [x for x in notion_position_block.collection.get_rows()]
item_dict = {x.title: len(x.get_property('potential_hires')) for x in item_list}
Which gets me what I want: {'Full Stack Engineer': 3, 'Social Media Manager': 2, 'Backend Software Engineer': 1}
The dictionaries key/value + num of elements will never be the same
How can I get this into a string if keys + num of elements are consistently changing?
What I am ultimately trying to get is:
Full Stack Engineer 3
Social Media Manager 2
Backend Software Engineer 1
Edit:
Is it possible to get the dictionary into a string with some version of
''.format()