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" m_location = words.find(chr(77)) if (m_location >= 0): first_m_word = words[m_location : words.find(" ", m_location)] print(first_m_word) else: print("Oh no, no Morns here!!")