arogozhnikov / python3_with_pleasure

A short guide on features of Python 3 with examples
3.63k stars 242 forks source link

The letters in the "Unicode for NLP" example is Chinese not Russian #17

Closed bigeast closed 6 years ago

bigeast commented 6 years ago

Hi, in the example, “您好” is Chinese letter means ”Hello“,not Russian.

arogozhnikov commented 6 years ago

This example

x = u'со'
x += 'co' # ok
x += 'со' # fail

contains Russian letters.