I have a variable like this:
>>> s = '\\320\\227\\320\\264\\320\\260\\320\\275\\320\\270\\320\\265 \\320\\261\\321\\213\\320\\262\\321\\210\\320\\265\\320\\271'
>>> print(s)
\320\227\320\264\320\260\320\275\320\270\320\265 \320\261\321\213\320\262\321\210\320\265\320\271
This contains the octal escape representations of the UTF-8 encoding of the string "Зданиебывшей" (octal 320 227
= hex D0 97
= UTF-8 for "З"). How can I decode this string to "Зданиебывшей"?