How would I loop through a text file and store a value. If I take a line from a text file, hello@aol.com:Password1, How would I store email as hello@aol.com , and password as Password1 ?
file = open("TEST.txt", "r")
for line in file:
print(line)