+ 3
Emoji inputs
Can news we use a dictionary object to correlate an emoji input with a number ? C# / Python https://code.sololearn.com/cx3ZVSleEBic/?ref=app
1 Answer
+ 4
yeah, for python something like this should work:
emoji_dict = {
"đ": 1,
"đ€©": 2,
"đ": 3
}