Re: [ctypes-users] it cannot find a User32 function
Brought to you by:
theller
From: eryk s. <er...@gm...> - 2017-05-04 03:55:30
|
On Thu, May 4, 2017 at 3:36 AM, Michael C <mys...@gm...> wrote: > how do you set unicode strings? > > unicode_String = ? My example showed that. A unicode string literal is prefixed by u, e.g. u"Spam Wars". In Python 3 this isn't necessary since its str strings are always Unicode. |