11 lines
181 B
Python
11 lines
181 B
Python
mapping = {
|
|
':)': '🙂',
|
|
':(': '🙁'
|
|
}
|
|
|
|
text = input('Please enter some text: ')
|
|
|
|
for emoticon in mapping.keys():
|
|
text = text.replace(emoticon, mapping[emoticon])
|
|
|
|
print(text)
|