i want to make it so i get 7 random letters form my list and make it into a random email, however i can't get it to print out a full email only 1 letter at a time.
import randomletters = ["a", "b","c", "d","e", "f","g", "h","i", "j","k", "l","m", "n","o", "p","q", "r","s", "t","u", "v","w", "x","y", "z",]random1 = random.choice(letters)for x in random1(7): print (x+"@gmail.com")
this only gives me an error and if i fix it, it will only give me one letter emails. The fix is:
random1 = random.choice(letters)print (random1+"@gmail.com")