我使用 pandas 来抓取这个网站https://www.mapsofworld.com/lat_long/poland-lat-long.html但我只有 3 个元素。我怎样才能从表中获取所有元素?
import numpy as np
import pandas as pd
#for getting world map
import folium
# Retreiving Latitude and Longitude coordinates
info = pd.read_html("https://www.mapsofworld.com/lat_long/poland-lat-long.html",match='Augustow',skiprows=2)
#convering the table data into DataFrame
coordinates = pd.DataFrame(info[0])
data = coordinates.head()
print(data)
