python convert html to string code example
Example 1: how to convert to string in python
str(integer_value)
Example 2: python convert html table to text
import pandas as pd
url = r'https://en.wikipedia.org/wiki/List_of_S%26P_500_companies'
tables = pd.read_html(url) # Returns list of all tables on page
sp500_table = tables[0] # Select table of interest