Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. >>> from unicodedata import name
  2. >>> name('𐹤')
  3. 'RUMI DIGIT FIVE'
  4. >>> int('𐹤')
  5. ValueError: invalid literal for int() with base 10: '𐹤'
  6. >>> int('五') # chinese/japanese number five
  7. ValueError: invalid literal for int() with base 10: '五'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement