python3 で b"" になってるやつ
astは標準なのでimport文書くだけ
文字列型
text = bytes.decode('utf-8')
print(text)
print(type(text))
出力
"{'x':1,'y':2}"
<class 'str'>
バイト型
text_bytes = text.encode('utf-8')
print(text_bytes)
print(type(text_bytes))
出力
b"{'x':1,'y':2}"
<class 'bytes'>
辞書型
import ast
text_dic = ast.literal_eval(text)
print(text_dic)
print(type(text_dic))
出力
{'x': 1, 'y': 2}
<class 'dict'>
これで触れる。