Byte datatype can contain only ______ and ______. unicode alone ascii and hexadecimal ascii and unicode decimal and hexadecimal
Answers
Answered by
2
Answer:
a byte can contain 8 bits and 2 nibble
Answered by
2
Answer:
A byte data type can contain only ASCII and Unicode.
Explanation:
These data types present in Python holds only string types and integer types. The sequences of bytes concerning integers having ranges between zero and 255. These objects can also be represented as the ASCII value of every single byte.
Usually, the strings type contains UNICODE like characters. These types should be written within a single quote or double-quotes. For example: ‘Jey’ or “Jey”. Thus the byte data types hold Unicode characters and ASCII code values.
Similar questions