寫python指令碼遇到的些許小問題

L1s4發表於2020-12-17

base64

報錯
TypeError: expected bytes-like object, not str
語句寫錯了…
例子:

a='dGhpcyBpcyBhIGV4YW1wbGU='
b=base64.b64decode(bytes(a, 'utf-8'))
print(b)
c=base64.b64encode(bytes('this is a example', 'utf-8'))
print(c)

在這裡插入圖片描述

相關文章