Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Caesar Cipher (encryptor) by RomanTT
def to_encrypt(text, delta):
a,b = 'abcdefghijklmnopqrstuvwxyz',''
for i in text:
if i in a:
b+=a[(a.index(i)+delta)%26]
else:
b+=i
return b
Oct. 9, 2018