...returns a list of strings after splitting the given string at the specified separator. The separator can be a character, a string, or a regular expression.
**Syntax**
```python
str.split(sep=None, maxsplit=-1)
```
**Parameters**
* **sep** (str): The separator to use. If sep is None, the...