Articles → Pandas → Read_Html Function In PandasRead_Html Function In PandasIn this article, we will discuss about read_html function in pandas.Purpose Read_html function reads the table from HTML page.Webpage For this article, we will be using this URL - (https://www.fnb.co.za/Controller?nav=rates.forex.list.ForexRatesList)Click to EnlargeCode import pandas as pd table = pd.read_html( 'https://www.fnb.co.za/Controller?nav=rates.forex.list.ForexRatesList') table[0]Output Click to EnlargePosted By - Karan Gupta Posted On - Friday, May 10, 2019 Query/Feedback Your Email Id** Subject* Query/Feedback Characters remaining 250**
import pandas as pd table = pd.read_html( 'https://www.fnb.co.za/Controller?nav=rates.forex.list.ForexRatesList') table[0]
Query/Feedback