How to find the position of a word in a string python?
Answers
Answered by
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)
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
Political Science,
7 months ago
English,
7 months ago
Math,
7 months ago
Social Sciences,
1 year ago
Chemistry,
1 year ago