Advertisement
6g7r

Fl-combo

Mar 29th, 2022
1,207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.06 KB | None | 0 0
  1. from colorama import Fore
  2. import os,random
  3. clear = lambda: os.system('cls')
  4. clear()
  5.  
  6. print(f"{Fore.GREEN}<<+>> {Fore.RESET}By insta : @6g7r")
  7. print(f"""{Fore.LIGHTMAGENTA_EX}
  8.  
  9.       /⌒ヽ.    [<?>] What is this tool?
  10.    /° ω°.           [<=>] This tool will help you choose a
  11.  _ノ ヽ ノ \_.    [<=>] specific number from the big combo
  12. `/ `/ ⌒Y⌒ Y ヽ
  13. (  (三ヽ人  /    |
  14. | ノ⌒\  ̄ ̄ヽ  ノ
  15. ヽ___>、___/
  16.    |( 王 ノ〈
  17.    /ミ`ー―彡ヽ
  18.   / ヽ_/  |.
  19.  
  20. """)
  21. class Ready:
  22.   def __init__(self):
  23.     self.name_file=input('<<+>> Name File : ')
  24.     self.How_many=int(input("<<+>> How many do you want :"))
  25.     self.combo=open(f"{self.name_file}.txt").read().splitlines()
  26.     self.Done=0
  27.   def start(self):
  28.     for i in range(self.How_many):
  29.       empa= str(random.choice(self.combo))
  30.       with open(f"combo{self.How_many}.txt", "a") as mix:
  31.         mix.write(f"{empa}\n")
  32.         mix.close()
  33. if __name__ == '__main__':
  34.   m=Ready()
  35.   m.start()
  36.  
  37.  
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement