Jan-21-2019, 04:47 PM
Hello, I am writing a program that will output a list of song titles. I want a user to be able to click a song title and then display the particular song on the screen. How do I make the titles clickable hyperlinks.
Here is part of my code:
Windros
Here is part of my code:
import re
import os
os.chdir('c://users//user/Documents')
songs = open('GloriousSongsXML.txt').read()
titles = re.findall('<title>(.*)</title', songs)
for item in titles:
print (item)Thank you.Windros

![[Image: mnTxyu.jpg]](https://imageshack.com/a/img923/6772/mnTxyu.jpg)