str
='...'
literals = a sequence of Unicode characters (UTF-16 or UTF-32, depending on how Python was compiled)bytes
=b'...'
literals = a sequence of octets (integers between 0 and 255)
python b 'string'
最新推荐文章于 2025-07-04 06:43:27 发布

str
= '...'
literals = a sequence of Unicode characters (UTF-16 or UTF-32, depending on how Python was compiled)bytes
= b'...'
literals = a sequence of octets (integers between 0 and 255)