Last active
July 19, 2016 14:47
-
-
Save Drakekin/f19f0d077722d82f28af22534bd8d968 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from builtins import chr | |
| from random import choice, randint | |
| def random_emoji(): | |
| return chr(choice([ | |
| randint(0x1F601, 0x1f64f), | |
| randint(0x2702, 0x27b0), | |
| randint(0x1f680, 0x1f6c0), | |
| randint(0x24c2, 0x1f251), | |
| randint(0x1f600, 0x1f636), | |
| randint(0x1f681, 0x1f6c5), | |
| randint(0x1f30d, 0x1f567) | |
| ])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment