Regular expressions -------------------- These are mainly used for pattern matching. These are used for validating data based on the given patterns. A regular expression is a group of special characters which is used for matching a pattern. For example, \d is used for matching numbers(0-9) To use regular expression, we import the module re. And it has the following functions: 1.match(pattern,data,flags): Matches the given pattern at the begining on the given data. If it matches , it will return the matched object otherwise it will return None. 2.search(pattern,data,flags): This function matches the pattern on the given data at begining or at ending or at middle. If it matches , it will return the matched object otherwise it will return None. 3.group(): Is used for returning matched data from matching object Example ======= import re result= re.match("Apple","Apple Computers ") if result: print("Matched data is ",re...