Dcoder icon

I'll be the next @ Dcoder

By Lochard | As a newbie programmer | 24 Jun 2023


Problem: You are given a string, you have to convert each letter in the string with the next one.For example a becomes b and C becomes D.

Input: Input contains a string s.

Output: Print the manipulated string according to the problem.

Constraints: 1≤length of string≤100

Sample Input: Dcoder

Sample Output: 

Edpefs

print(''.join(tuple(map(lambda c: chr(ord(c)+1), tuple(input())))))

How do you rate this article?

1


Lochard
Lochard

20240228 Arrived in the UK for about 2 week. All my fears persist. Some are even getting worse. https://github.com/locharp/asylum_diary/


As a newbie programmer
As a newbie programmer

Sharing entry level codes. My snippets on GitHub https://github.com/locharp/code-snippets

Send a $0.01 microtip in crypto to the author, and earn yourself as you read!

20% to author / 80% to me.
We pay the tips from our rewards pool.