Get Synonyms and Antonyms of Word Using NLTK WordNet in Python June 20, 2020cocyer In this tutorial, we will introduce the way to get synonyms and antonyms of word using NLTK WordNet in python. 1. Import library [...]
Tokenize Sentences and Words Using Python NLTK in Python June 20, 2020cocyer In this tutorial, we will introduce how to tokenize text sentences and words using python nltk library. 1. Import library from nltk.tokenize import [...]
Remove Punctuation in Sentences Using Python June 20, 2020cocyer In this tutorial, we will remove all punctuations in a text sentence using python. We will use string.punctuation to implement. 1. Import python [...]
Determine the Part of Speech of Words in Sentence Using Python NLTK June 19, 2020June 19, 2020cocyer In this tutorial, we will introduce the way to determine the part of speech of words in a sentence. We will use python [...]
Strip String Whitespace in Python June 19, 2020cocyer In this tutorial, we will introduce the method to remove whitespaces in a python string. 1. Create a text string in python text_data [...]
Parse HTML Using Python Beautiful Soup June 19, 2020June 19, 2020cocyer In this tutorial, we will introduce how to parse a html page using python beautiful soup package. 1. Import library from bs4 import [...]
Scrape and Extract Text from HTML Using Python Beautiful Soup June 19, 2020cocyer In this tutorial, we will introduce the way to scrape html and extract some useful text from a web page using python beautiful [...]
Convert RGB Color to Hex Code in Python June 19, 2020cocyer In this tutorial, we will introduce the way to convert a rgb color value to hex code using python. Here is an example: [...]
Convert an Image to Base64 String in Python June 19, 2020cocyer In this tutorial, we will introduce the way to convert an image to base64 string using python base64 package. 1. Import library import [...]
Python: Implement Binary Search Algorithm – A Step Guide June 19, 2020March 31, 2021cocyer In this tutorial, we will implement binary search using python script. 1. Creae a sorted list, which contains some numbers we plan to [...]