I have Paragraph contains “I have a good python book so will become pythonist”
my aim is to search only “python” not pythonist how can I do it using python and not take any extra characters before and after
I have Paragraph contains I have a good python book so will become pythonist
Share
This will find if there is an exact match with the word
'python'by splitting all the words by whitespace.