#The code is supposed to check if the user name typed in a text file. The text file includes
Username
John
The text file is (Pdata)
f = open("Pdata.txt")
liner = f.readlines()
user = str(liner[1])
print(liner[1])
tf = True
while tf:
          print("hello")
          userr = str(input("Pls enter username"))
          if userr is user:
                    
                    tf = False
tf = False
 
     
     
     
    