Next, copy-and-paste the entire section from the website (including the title) and use it as your text string for the following regular expression exercises. Turn in your regular expression Python code solutions in a single Jupyter notebook.
Determine if the letter “q” (lowercase q) is in your string
Determine if the substring “peace” (with a lowercase p) is in your string
Determine if the word “peace” or “Peace” is in your string
Determine which numeric digits (0-9) are in your string at least once
Identify the first occurrence of the substring starting with the substring “the” and ending with the substring “end” in your string.
Identify all three letter lowercasewords in your string.
Identify all words that start with a vowel in your string.
Identify the title of the speech in your string.
Identify the date and location of the speech in your string.
Replace all occurrences of the word “the” (lowercase or uppecase) with the word “THE”.