Skip to content

Instantly share code, notes, and snippets.

@Drakekin
Last active July 19, 2016 14:47
Show Gist options
  • Select an option

  • Save Drakekin/f19f0d077722d82f28af22534bd8d968 to your computer and use it in GitHub Desktop.

Select an option

Save Drakekin/f19f0d077722d82f28af22534bd8d968 to your computer and use it in GitHub Desktop.
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