In this tutorial, we will some tutorials and examples to show you methods to process text using python.
In this tutorial, we will introduce the way to remove english stop words from a text using python nltk. 1. Import library from
[...]
In this tutorial, we will introduce the way to get synonyms and antonyms of word using NLTK WordNet in python. 1. Import library
[...]
In this tutorial, we will introduce how to tokenize text sentences and words using python nltk library. 1. Import library from nltk.tokenize import
[...]
In this tutorial, we will remove all punctuations in a text sentence using python. We will use string.punctuation to implement. 1. Import python
[...]
In this tutorial, we will introduce the way to determine the part of speech of words in a sentence. We will use python
[...]
In this tutorial, we will introduce the method to remove whitespaces in a python string. 1. Create a text string in python text_data
[...]