I'm trying to make a basic program to check if a link is a grabify link by comparing it to available grabify domains, I have a text file that contains all the possible domains and I want to check if a user input is the same.
Q1 = input("input your website domain: ")
PGD = open('Domains', 'r')
if PGD == Q1:
print("True")
if i input the EXACT domain as one of the lines in my text file it doesn't return anything.