Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
simple replacements solution in Clear category for Caesar Cipher (encryptor) by imtiaz.rahi
def to_encrypt(text, delta):
alpha = 'abcdefghijklmnopqrstuvwxyz'
return "".join([alpha[(alpha.index(ch) + delta)%26] if ch != " " else " " for ch in text])
Aug. 26, 2019