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)
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)