Skip to content
tlam edited this page Mar 14, 2011 · 1 revision
  1. Check a unicode name
    import unicodedata
    unicodedata.name(u'\u00c3')
    unicodedata.name(u'\u00a9')
  1. Check substring in string
if 'Hi' in 'Hi There':
    print 'Success!'
Clone this wiki locally