Created
September 16, 2015 11:59
-
-
Save fandrefh/644a51f2c504b2cffa6a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import clipboard | |
import random | |
while True: | |
with open("cpf_vendedores.txt") as f: | |
cpfs = [line.strip() for line in f.readlines()] | |
cpf = random.choice(cpfs) | |
clipboard.copy(cpf) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment