some secret message are given below. decode these messages and write. 1g 2o 3o 4d 7m 5o 8r 9n 8i 2n 5g
Answers
Answer:
Secret message is "Good morning".
Step-by-step explanation:
Secret message:
In this game one person writes a letter or draws a shape on a piece of paper or index card with a white candle. The shape or message made of wax can't be seen well until it's painted. The magic part happens as your child paints over the paper and a shape or letter suddenly appears!
You can view your secret conversations like any other message; just choose it from the list of open message threads on the main screen of the Messenger app. There will be a lock symbol next to the contact name, which indicates that it's not a regular chat.
PYTHON PROGRAM FOR SECRET MESSAGE:
import string
inp = (input()).lower()
alps = string.ascii_lowercase
l1 = []
for i in alps:
l1.append(i)
# print(l1, inp)
count = []
for i in inp:
try:
count.append(l1.index(i))
except ValueError:
count.append(" ")
# print(count)
str = ''
for i in count:
try:
str += l1[25-i]
except TypeError:
str += " "
print(str)
Here we have to find
For more such related questions : https://brainly.in/question/18722533
#SPJ1