Question #185115

Given a string, write a program to print a secret message that replaces characters with numbers 'a' with 1, 'b' with 2, ..., 'z' with 26 where characters are separated by '-'.

Note: You need to replace both uppercase and lowercase characters. You can ignore replacing all characters that are not letters.

abcdefghij12345678910

klmnopqr1112131415161718

stuvwxyz1920212223242526

For example, if the given input is "python", "p" should replaced with "16", similarly"y" with "25","t" with "20","h" with "8","o" with "15","n" with "14". So the output should be "16-25-20-8-15-14".

Sample Input 1

python

Sample Output 1

16-25-20-8-15-14

Sample Input 2

Foundations

Sample Output 2

6-15-21-14-4-1-20-9-15-14-19


Expert's answer

letters='abcdefghijklmnopqrstuvwxyz'
word=input()
result=''
for x in word:
    for i in range(len(letters)):
        if x.lower()==letters[i]:
            result=result+str(i+1)+'-'
print(result[:-1])
LATEST TUTORIALS
APPROVED BY CLIENTS