cats = {} cats['tabby'] = 'The tabby cat...' cats['persian'] = 'This cat...' catType = raw_input('What type of cat? ') print cats[catType]