Right now the given emoji set is being used to encode letters from A-Z which can be found in index.py file
nature_emojis = [
'🌿', '🌻', '🍃', '🌸', '🍂', '🌺',
'🍀', '🍁', '🍄', '🌹', '🌲', '🌴',
'🍅', '🍆', '🌽', '🍊', '🍎', '🍓',
'🍑', '🍍', '🍌', '🍉', '🍇', '🍈',
'🍐', '🍏'
]
TASK
Hint
You need to modify this encrypt and decrypt functions in index.py
Right now the given emoji set is being used to encode letters from A-Z which can be found in index.py file
TASK