I need to process a list of emails, cut them and make the output with counter of iterations
MailList = [[email protected], [email protected], [email protected]] # I have a list with emails # I need to process them and get next output: "User%number% is email1" I'm using something like: for c in MailList: print('user'+ ' is '+c[0:7]) # what I need to insert here to get desirable counter for my output?