If a page has something like: ``` ``` the code ``` msg = ''.join(soup.p.findAll(text=True)) ``` returns an empty string. To avoid this you can use: ``` for para in soup.findAll('p'): if not para.text == "": msg = msg + para.text ```
If a page has something like:
the code
returns an empty string.
To avoid this you can use: