blob: a763a975675adcf14ac778cd38328c58c2be7f73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
import os
CHUNK_SIZE = 1024
character = input('Введите один символ: ')
while len(character) != 1:
character = input('Введите РОВНО один символ: ')
path = os.path.join(os.getcwd(), 'task1_data.txt')
try:
f = open(path)
except FileNotFoundError as e:
exception_path = str(e).strip('[Errno 2] No such file or directory:')[1:-1]
print(f'"{exception_path}" не существует')
except PermissionError as e:
exception_path = str(e).strip('[Errno 13] Permission denied:')[1:-1]
print(f'Файл "{exception_path}" не доступен для чтения/записи')
except IsADirectoryError as e:
exception_path = str(e).strip('[Errno 21] Is a directory:')[1:-1]
print(f'"{exception_path}" является директорией')
else:
data = f.read(CHUNK_SIZE)
i = data.count(character)
while data:
data = f.read(CHUNK_SIZE)
i += data.count(character)
f.close()
print(f'В данном файле {i} символов "{character}"')
|