popitem pops off a random item : popitem « Dictionary « Python Tutorial






d = {'url': 'http://www.python.org', 'spam': 0, 'title': 'Python Web Site'}
d.popitem()
print d
8.22.popitem
8.22.1.popitem pops off a random item