Skip to content

Instantly share code, notes, and snippets.

@timvisher
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timvisher/f05f833f41896df37ffe to your computer and use it in GitHub Desktop.
Save timvisher/f05f833f41896df37ffe to your computer and use it in GitHub Desktop.
Traceback (most recent call last):
File "/home/tim/bin/random_prompt_animal", line 85, in <module>
print random.choice(prompt_animals)
UnicodeEncodeError: 'ascii' codec can't encode character u'\U0001f41e' in position 0: ordinal not in range(128)
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import random
prompt_animals=(
u'๐Ÿ€',
u'๐Ÿ',
u'๐Ÿ‚',
u'๐Ÿƒ',
u'๐Ÿ„',
u'๐Ÿ…',
u'๐Ÿ†',
u'๐Ÿ‡',
u'๐Ÿˆ',
u'๐Ÿ‰',
u'๐ŸŠ',
u'๐Ÿ‹',
u'๐ŸŒ',
u'๐Ÿ',
u'๐ŸŽ',
u'๐Ÿ',
u'๐Ÿ',
u'๐Ÿ‘',
u'๐Ÿ’',
u'๐Ÿ“',
u'๐Ÿ”',
u'๐Ÿ•',
u'๐Ÿ–',
u'๐Ÿ—',
u'๐Ÿ˜',
u'๐Ÿ™',
u'๐Ÿš',
u'๐Ÿ›',
u'๐Ÿœ',
u'๐Ÿ',
u'๐Ÿž',
u'๐ŸŸ',
u'๐Ÿ ',
u'๐Ÿก',
u'๐Ÿข',
u'๐Ÿฃ',
u'๐Ÿค',
u'๐Ÿฅ',
u'๐Ÿฆ',
u'๐Ÿง',
u'๐Ÿจ',
u'๐Ÿฉ',
u'๐Ÿช',
u'๐Ÿซ',
u'๐Ÿฌ',
u'๐Ÿญ',
u'๐Ÿฎ',
u'๐Ÿฏ',
u'๐Ÿฐ',
u'๐Ÿฑ',
u'๐Ÿฒ',
u'๐Ÿณ',
u'๐Ÿด',
u'๐Ÿต',
u'๐Ÿถ',
u'๐Ÿท',
u'๐Ÿธ',
u'๐Ÿน',
u'๐Ÿบ',
u'๐Ÿป',
u'๐Ÿผ',
u'๐Ÿฝ',
u'๐Ÿพ',
u'๐Ÿ˜ธ',
u'๐Ÿ˜น',
u'๐Ÿ˜บ',
u'๐Ÿ˜ป',
u'๐Ÿ˜ผ',
u'๐Ÿ˜ฝ',
u'๐Ÿ˜พ',
u'๐Ÿ˜ฟ',
u'๐Ÿ™€',
u'๐Ÿ™ˆ',
u'๐Ÿ™‰',
u'๐Ÿ™Š',
)
print random.choice(prompt_animals)
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import random
prompt_animals=(
u'a',
)
print random.choice(prompt_animals)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment