if choose == '3':
os.chdir('bd')
os.chdir('email')
email = input('Введи почту:')
c = 0
with open('data.txt', encoding='utf-8') as f:
for line in f:
c += line.count(email)
if email in line:
print(line.strip())
if choose == '3':
os.chdir('bd')
os.chdir('email')
email = input('Введи почту:')
c = 0
with open('data.txt', encoding='utf-8') as f:
for line in f:
c += line.count(email)
print(f'Количество совпадений: {c}')
input('Для вывода нажми Enter...')
if email in line:
print(line.strip())
Итак, готовые примеры
1) Можно сделать с списком, вставить туда(append) все строки с совпадениями, и потом просто посчитать
len(spisok)
2) Использовать переменную
1.2) Использовать список
P.s - писал с телефона, могут быть ошибки в отступах