Computer Science, asked by shahkssrawther5992, 11 months ago

How to find the position of a word in a string python?

Answers

Answered by mahak95
0
sentence= input("Enter a sentence") keyword= input("Input a keyword from the sentence")

I want to find the position of the keyword in the sentence. So far, I have this code which gets rid of the punctuation and makes all letters lowercase:

punctuations = '''!()-[]{};:'"\,<>./?@#$%^&*_~'''#This code defines punctuation #This code removes the punctuation no_punct = "" for char in sentence: if char not in punctuations: no_punct = no_punct + char no_punct1 =(str.lower (no_punct)
Similar questions