Skip to content

Instantly share code, notes, and snippets.

@salahhadjar
Created April 12, 2019 18:39
Show Gist options
  • Save salahhadjar/052e8fb7f9746297b08734c4e40f1332 to your computer and use it in GitHub Desktop.
Save salahhadjar/052e8fb7f9746297b08734c4e40f1332 to your computer and use it in GitHub Desktop.
Hotmail rand00m Email Generator
#!/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