= input()
mails.append(employee)
for i in range(int(input())):
count = 1
username = input()
mail = "{0}@untitled.py".format(username)
while mail in mails:
mail = "{0}{1}@untitled.py".format(username, count)
count += 1
print(mail)
почему каунтер не увеличивается в цикле?
у тебя цикл while увеличивает каунтер, а новая итерация цикла for возвращает каунтер к 1 вынеси count = 1 на уровень выше
Обсуждают сегодня