Python 3.7.4 (tags/v3.7.4:e09359112e, Jul 8 2019, 20:34:20) [MSC v.1916 64
bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> a = b'$MONEY'
>>> type(a)
<class 'bytes'>
>>> b = b'$'
>>> type(b)
<class 'bytes'>
>>> a0 = a[0]
>>> type(a0)
<class 'int'>
>>>
【 在 Madlee (无竹居士) 的大作中提到: 】
: [code=py]
: >>> a = b'$MONEY'
: >>> a[0] == b'$'
: ...................
--
FROM 59.77.36.*