···2121# we've retrieved the latest five top-level items in our library
2222# we can print each item's item type and ID
2323for item in items:
2424- print('Item: %s | Key: %s' % (item['data']['itemType'], item['data']['key']))
2424+ print(f"Item: {item['data']['itemType']} | Key: {item['data']['key']}")
2525```
26262727# Documentation
+1-1
doc/index.rst
···3737 # we've retrieved the latest five top-level items in our library
3838 # we can print each item's item type and ID
3939 for item in items:
4040- print('Item Type: %s | Key: %s' % (item['data']['itemType'], item['data']['key']))
4040+ print(f"Item: {item['data']['itemType']} | Key: {item['data']['key']}")
41414242Refer to the :ref:`read` and :ref:`write`.
4343