I\'m trying to extract US states from wiki URL, and for which I\'m using Python Pandas.
import pandas as pd import html5lib f_states = pd.read_html(\'https://si
For that you just need to install
pip install pandas pip install lxml
and then you have to import those and run your program
import pandas as pd f_states=pd.read_html('https://simple.wikipedia.org/wiki/List_of_U.S._states')