#1
first post here, this program generates random emails and passwords.

u can change the number after random_char to make the email longer\shorter, u can also put an other email provider instead of gmail.com
 
Code:
 
[code]
import random
import string

def random_char(char_num):
       return ''.join(random.choice(string.ascii_letters) for _ in range(char_num))

print("email: "+random_char(7)+"@gmail.com")

print ("password: "+random_char(7) )
 
[/code]