我們總是有這樣的需求,想在string前面加上b ,轉換成bytes
行如下
b'hahhaha'
我們可以使用bytes
bytes("hello", encoding="ascii")
b'hello'
'hello'.encode('utf-8')
b'hello'
b'hello'.decode('utf-8')
'hello'
https://stackoverflow.com/questions/19511440/add-b-prefix-to-python-variable