I have a list of URLs:
URL = ['ose.co.jp/frame.html', 'tse.or.jp/english/individuals/index.html', 'traderupdates.nyse.com/?sa_campaign=/internal_ads/callouts/traderupdates']
I thought of using split('/'), but realized that it doesn't really solve the problem because I would still have to delete the portion of the URL after '/'.
The result that I am looking for is:
URL = ['ose.co.jp', 'tse.or.jp', traderupdates.nyse.com']