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
@shantanuo : not enough reputation to comment. How about the following?
def make_clickable(url, name): return '{}'.format(url,name) df['name'] = df.apply(lambda x: make_clickable(x['url'], x['name']), axis=1)