While handling text data, sometimes we have to search for occurrences of specific words in the text and extract specific words. In this tutorial, we … [Read more...] about Extract a specific word from a string in Python
Strings
How to write comments in Python
Comments in python are parts of source code which aren't executed by the python interpreter. Comments contribute no functionality to the application … [Read more...] about How to write comments in Python