txt = "Next, use short sentences, because grandma, like anyone of us, if you make very long sentences, she gets to the end and she can't remember what you said in the beginning, anymore."
try:
A = txt.index("remember")
B = txt.index("grandma")
if int(A) - int(B) < 0:
print('Слово A находится до слова B')
else:
print('Слово A находится после слова B')
except ValueError:
print('Не найдено как минимум одно из слов в строке')
while True:
cryptMode = input("Выберите режим! [З]ашифровать|[Д]ешифровать: ").upper()
if cryptMode not in ['З','Д']: # Проверка правильности введенного выбора (режима)
print("Ошибка! режим не найден! Повторите попытку...");
continue
openFile = input("Вы желаете ввести сообщение в консоль или открыть из файла? [О]ткрыть, [В]вод вручную: ").upper()
if openFile not in ['О','В']:
print("Ошибка! Проверьте правильность введенного режима! Повторите попытку...");
continue
if cryptMode in ['З', 'Д'] and openFile in ['O', 'В']:
return True
function addition() {
var a = parseInt(document.getElementById('a').value);
var b = parseInt(document.getElementById('b').value);
if (isNaN(a)==true) a=0;
if (isNaN(b)==true) b=0;
var c = a + b;
document.getElementById('abc').innerHTML = "поздравляю это "+c;
document.getElementById('result').innerHTML = a + " + " + b + " = " + c;
}