13 lines
205 B
Python
13 lines
205 B
Python
"""prints my favorite emojis"""
|
|
|
|
* fetch all emojis
|
|
* filter by shortcode
|
|
* max string length: 7
|
|
* must be in dictionary:
|
|
"""
|
|
|
|
def fetch_emojis():
|
|
return emojis_dict
|
|
|
|
def is_in_dict():
|
|
return True
|