words = """Every Night & every Morn Some to Misery are Born Every Morn and every Night Some are Born to sweet delight""" # Find the first word "Morn" character = chr(122) print(character) character_location = words.find(character) print(character_location) end_location = words.find(" ", character_location) print(end_location) first_m_word = words[character_location : end_location] print(first_m_word)