out =''# print(ciphertext)foriinrange(len(ciphertext)):# for each symbol in the ciphertext# get the symbol'sindexin the alphabetsymbol_index = ascii_lowercase.index(ciphertext[i])# get the key_symbolkey_symbol = key[i % len(key)]# get the key_symbol'sindexin the alphabetkey_symb...