email = re.search('(.*?)-+(.*?)-+', line).group(1)
password = re.search('(.*?)-+(.*?)-+', line).group(2)
user_data.write("%s\t%s\n" % (email, password))
how to combine the first and second line into one line?
another question:
email = re.search("[a-zA-Z0-9.!#$%&'*+-/=?\^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*", line)
how should I split the line into two lines?