txt_26 = open("26.txt", "r", encoding="cp1251")
content = txt_26.read()
txt_26.close()
sentences = list(content.split("."))
length = len(sentences)
# print(length)
for i in range(length):
if sentences[i] == r"": # тут ошибка
print(sentences[i], " - ", i) # выводит так как надо
del sentences[i] # из-за этой команды ошибка
range(length - 1, -1, -1)
), а ещё лучше вообще не модифицируйте список, а создавайте новый:sentences = [ n for n in sentences if n ]