Last active
July 23, 2018 18:39
-
-
Save bee-san/352c9fb1fa7996a64f20a6396f5a6cfa 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
| # taken from page 87, chapter 3 of Fluent Python by Luciano Ramalho | |
| >>> from unicodedata import name | |
| >>> {chr(i) for i in range(32, 256) if 'SIGN' in name(chr(i), '')} | |
| {'×', '¥', '°', '£', '©', '#', '¬', '%', 'µ', '>', '¤', '±', '¶', '§', '<', '=', '®', '$', '÷', '¢', '+'} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment