Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.41 KB | None | 0 0
  1. # Import libraries we may need
  2. import sys, os, time, signal, webbrowser, platform, subprocess, pyfiglet
  3.  
  4. #Use pyfiglet to make an easy ASCII logo
  5. greeting = pyfiglet.figlet_format("The Remover", font = "big")
  6. print(greeting)
  7.  
  8. #Ask the user if they want to search by email or username
  9. def menu():
  10.     print("1. Email \n2. Username \n")
  11.  
  12.     OPT = input("Please select which you'd like to search:")
  13.  
  14. menu()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement