Python dictionaries - Verbs Index

A Python dictionary consists of a set of key value pairs. Let's look at an example: >>> a = {'Ann': '592-6372', 'Ben': '282-8992', 'Flora': '927-9021', 'Isaac': '423-3790'} Here we've defined a list of key-value pairs. For example, 'Ann': '592-6372'. The members of the pair are separated by a colon. Each pair is separated from the other pairs ... ................
................