Python based on .txt file

65 Views Asked by At

I own a txt file that contains many lines Each line will be as the next

email1:password1
email2:password2
...
...
...
emailxx:passwordxx

I want a python code that reads the file line at a time Where the next is printed

email=username1
pass=password1

email=username2
pass=password2

email=username3
pass=password3
...
...
...
email=usernamexx
pass=passwordxx
3

There are 3 best solutions below

1
On BEST ANSWER

thanks i fixed it

with open("xxx.txt") as f:
for line  in f.readlines():
   #print(line)
   values = line.split(":")
   email = values[0]
   pasw = values[1]
   print(f"user={email}\npass={pasw}\n")
2
On

the open functions gives you a file object and has methods to read the lines from the file.

with open(filepath) as f:
    for line  in f.readlines():
       print(line)
       info = line.strip(":"))
       output = f"email={info[0]}\npass={info[2]}"
       print(output) 
f.close() #Close the file when you're done.
1
On

try the following:

with open('path/to/file.txt','r') as f:
    values = f.readline().split(":")
    print(f"email={values[0]}")
    print(f"pass={values[1]}\n")