28. What do the split(), sub(), and subn() Python methods of the "re" module mean?
These methods are used to alter strings and are a part of the Python RegEx or "re" package. Splitting a string into a list is done using the split() method.Substrings that match a regex pattern are found using the sub() method, which then substitutes the matching substring with a different string.