127k views
2 votes
Can you please explain this code

sentence= input("Please Enter A Sentence With No Puncatuation:> ")
sentence= sentence.lower()
keyword= input("Please Input A Word From The Sentence:> ")
keyword= keyword.lower()
words= sentence.split(' ')
for (i, subword) in enumerate(words):
if(subword == keyword):
print(i+1)
break
else:
print("Error This Word Isnt In The Sentence")

User Beans
by
7.3k points

1 Answer

2 votes
I don't understand this question
User Doguita
by
7.4k points