import pandas as pd
url = 'https://m-selig.ae.illinois.edu/ads/coord/2032c.dat'
df = pd.read_table(url, header=None, skiprows=2, sep=('\t'), engine='python')
df.to_excel('data_1.xlsx', index=False, header=False)
The url includes the x and y coordinates. When I make the url into an excel file the points are in a single column. How can I make it into two columns?