Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
%26 solution in Clear category for Caesar Cipher (encryptor) by vit.aborigen
from string import ascii_lowercase as alpha
def to_encrypt(text, delta):
result = ''
for value in text:
if value in alpha:
result += alpha[(alpha.index(value) + delta) % 26]
else:
result += value
return result
Nov. 16, 2018
Comments: