> XXX = raw_input("1. Enter the string that you'd like to find: ") > y = raw_input("2. Enter the string that you'd like to replace > XXX with: ") y = raw_input("2. Enter the string that you'd like to replace %s with: " % (XXX,)) =Tony Meyer