print ''' I can tell you everything about cats! ''' catType = raw_input('What type of cat? ') if catType == 'siamese': print 'The siamese cat ...' elif catType == 'tabby': print 'The tabby cat is stripey' else: print "I don't know that type of cat"