Problem 1: Computers cannot read paragraphs; they process lists of strings. Take a short paragraph of text. First, split the paragraph into individual sentences. Then, split the very first sentence into individual words (tokens).

Problem 2: You have a sentence: “The data scientist loves data because data is the best.” Find out what the most common meaningful words are. To do this, you must convert the text to lowercase, remove punctuation, remove “stop words” (common filler words like “the”, “is”, “because”), and then count the remaining words.

Problem 3: Take the sentence: “The quick brown fox jumps over the lazy dog.” Use NLTK to automatically tag each word with its grammatical Part of Speech (e.g., Noun, Verb, Adjective).