This is the code i have so far but i want it to treat the lower case and upper case words the same not sure how to though any ideas?(E.g. CASE, case and CAse the same).
sentence= input("Enter a sentence")
keyword= input("Input a keyword from the sentence")
words = sentence.split(' ')
for i, word in enumerate(words):`enter code here`
if keyword == word:
print(i+1)