我不能得到这个类型?我正在使用python3。
print(type(base64_type))
# output: <class 'bytes'>
if type(base64_type) is 'bytes':
print('wow')
else:
print ('Why are we not working')
答案 0 :(得分:1)
'bytes'
是一个字符串
同时,bytes
是一个类。
>>> bytes
<class 'bytes'>
>>> isinstance(b'foo', bytes)
True