Advertisement
steve-shambles-2109

183-Unicode symbols

Oct 22nd, 2019
636
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.37 KB | None | 0 0
  1. """
  2. Python code snippets vol 37:
  3. 183-Unicode symbols
  4. stevepython.wordpress.com
  5.  
  6. requirements: None
  7.  
  8. Source: various
  9. """
  10.  
  11. symbols = [
  12.     u'\u2702', u'\u2705', u'\u2708', u'\u2728',
  13.     u'\u2709', u'\u270A', u'\u270B', u'\u270C',
  14.     u'\u270F', u'\u2712', u'\u2714', u'\u2716',
  15.     u'\u274E', u'\u2753', u'\u2764'
  16.     ]
  17.  
  18. for x in range(15):
  19.     print(symbols[x])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement