SyntaxFix
Write A Post
Hire A Developer
Questions
if your world is 100% ascii/utf-8(a lot of use cases fit in that box):
ascii/utf-8
b = bytearray(s, 'utf-8') # process - e.g., lowercasing: # b[0] = b[i+1] - 32 s = str(b, 'utf-8')
python 3.7.3