I am exporting dataframes to excel sheets. Two columns have https addresses. I want to make them these columns hyperlinks. So, when I open the excel sheet, I can simply click the hyperlink.
My export code:
# jobsdf has two columns Job URL, Apply URL that needed to be hyperlinked
with pd.ExcelWriter('My_jobs.xlsx') as writer:
jobsdf.to_excel(writer,sheet_name='jobs_list')
How to hyperlink the two columns Job URL, Apply URL and then export to the excel?
Update: after the accepted answer, the excel sheet shows them as a hyperlinks (with no blue underline below)


