Я хочу, чтобы пользователь продолжал вводить предложение до тех пор, пока в нем есть символ, которого нет в алфавите или пробел, использующий некоторое время l oop. Что я делаю не так?
plaintext = input("Enter the sentence to encode or decode: ")
alphabet = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R',
'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', ' ']
contin = True
for i in range(0,len(plaintext)):
while plaintext[i] not in alphabet:
contin = False
while not contin:
plaintext = input("Enter the sentence to encode or decode: ")