Guest User

Untitled

a guest
Sep 17th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. for line in open('config.txt'):
  2.     if "user=" in line:
  3.         user = line[5:]    
  4.     if "pass=" in line:
  5.         pw = line[5:]
Add Comment
Please, Sign In to add comment