Skip to content

Get only TLD from a URL in Python

Advertisements

url = 'https//poopcode.com'
#Get TLD
print url[-4:]
#.com

print url[7:-4]
#poopcode

See also  String formatting in Python

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.