Change Every Letter to the Next Letter

Challenge Difficulty: Easy | Estimated completion time: ~5 minutes

Write a function that changes every letter to the next letter:

“a” becomes “b”

“b” becomes “c”

“d” becomes “e”

and so on …

Examples

move("hello") ➞ "ifmmp"
 
move("bye") ➞ "czf"
 
move("welcome") ➞ "xfmdpnf"

Notes

There will be no z’s in the tests.

Solution

Python
Output