如何正确获取python类型的变量?

时间:2018-05-18 05:40:49

标签: python python-3.x

我不能得到这个类型?我正在使用python3。

print(type(base64_type))
# output: <class 'bytes'>

if type(base64_type) is 'bytes':
    print('wow')
else:
    print ('Why are we not working')

1 个答案:

答案 0 :(得分:1)

'bytes'是一个字符串
同时,bytes是一个类。

>>> bytes
<class 'bytes'>
>>> isinstance(b'foo', bytes)
True