print(\'http://google.com\') outputs a clickable url.
print(\'http://google.com\')
How do I get clickable URLs for pd.DataFrame([\'http://google.com\', \'http://duckduckgo.com
pd.DataFrame([\'http://google.com\', \'http://duckduckgo.com
Try using pd.DataFrame.style.format for this:
df = pd.DataFrame(['http://google.com', 'http://duckduckgo.com']) def make_clickable(val): return '{}'.format(val,val) df.style.format(make_clickable)
I hope this proves useful.