• 🌙 Community Spirit

    Ramadan Mubarak! To honor this month, Crax has paused NSFW categories. Wishing you peace and growth!

Program that generate random email address (1 Viewer)

Currently reading:
 Program that generate random email address (1 Viewer)

Recently searched:

yohilax951

Member
LV
1
Joined
Dec 20, 2023
Threads
62
Likes
32
Awards
5
Credits
3,814©
Cash
0$
import random
import string

def generate_random_email():
username = ''.join(random.choices(string.ascii_lowercase, k=8))
domain = ''.join(random.choices(string.ascii_lowercase, k=6))
extension = random.choice(["com", "net", "org"])
email = f"{username}@{domain}.{extension}"
return email

# Example usage
random_email = generate_random_email()
print("Random Email Address:", r
andom_email)
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips
Recently searched:

Similar threads

Users who are viewing this thread

Top Bottom