()
| 227 | |
| 228 | # function to search emoji |
| 229 | def search_emoji(): |
| 230 | word = inputentry.get() |
| 231 | if word == "": |
| 232 | outputtxt.insert(END, "You have entered no emoji.") |
| 233 | else: |
| 234 | means = emoji.demojize(word) |
| 235 | outputtxt.insert(END, "Meaning of Emoji : " + str(word) + "\n\n" + means) |
| 236 | |
| 237 | |
| 238 | # main window created |