Cryptography of replacement 2
Write a function that receives a word and changes each letter to its next letter in the alphabet. Then returned the result.
Actually:
- “A” turns into “b”
- “B” turns into “c”
- “C” turns into “D”
- And .....
- “Z” turns into “A”
Example:
ramznegari(“Hello”) ➞ “IFMMP”
ramznegari(“bye”) ➞ “CZF”
ramznegari(“Welcome”) ➞ “xfmdpnf”