#!/usr/bin/python bookauthors = {'Gone with the Wind': 'Margaret Mitchell', 'Aeneid': 'Virgil', 'Odyssey': 'Homer'} for book in bookauthors: print book, 'by', bookauthors[book]