Created
April 12, 2019 18:39
-
-
Save salahhadjar/052e8fb7f9746297b08734c4e40f1332 to your computer and use it in GitHub Desktop.
Hotmail rand00m Email Generator
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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
logo = """ | |
________ .__.__ ________ __ | |
/ _____/ _____ _____ |__| | / _____/ ____ ____ ________________ _/ |_ ___________ | |
/ \ ___ / \\__ \ | | | ______ / \ ____/ __ \ / \_/ __ \_ __ \__ \\ __\/ _ \_ __ \ | |
\ \_\ \ Y Y \/ __ \| | |__ /_____/ \ \_\ \ ___/| | \ ___/| | \// __ \| | ( <_> ) | \/ | |
\______ /__|_| (____ /__|____/ \______ /\___ >___| /\___ >__| (____ /__| \____/|__| | |
\/ \/ \/ \/ \/ \/ \/ \/ | |
""" | |
print(logo) | |
name = input("Name To Generate! >> ") | |
num = input("Emails Number! >> ") | |
main = 0 | |
while True: | |
main = main + 1 | |
print(str(name) + str(main) + "@gmail.com") | |
if(int(main) == int(num)): | |
break |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment