Using Python to Access Web Date:Video 11.1Two: Regular Expressions: Part 1Chapter 11:So welcome to Chapter 11. Chapter 11’s kind of a fun chapter because youdon’t really need to now regular expressions. And so, if you just want to skipahead, or maybe do the assignment or whatever, but this is kind of fun,regular expressions are a neat little thing. They are real old concept, they’rekind of an ancient notation and having to do with the study of languages, notreally exactly computer programming languages, but languages, andgrammars, and what is in a language and what is not in the language, andregular expression is a form of a language, and meaning it’s a way to saythat a set of strings match or don’t match a regular expression.Regular Expressions- In computing, a regular expression, also referredto as “regex” or “regexp”, provides a concise and flexible means formatching strings of text, such as particular characters, words, orpatterns of characters. A regular expression is written in a formallanguage that can be interpreted by a regular expression processor.Understanding Regular Expressions:oVery powerful and quite crypticoFun once you understand themoRegular expressions are a language unto themselvesoA language of“marker characters” – programming withcharactersoIt is kind of an “old school” language – compact1