What is the data type of print(type(0xFF)) *
Answers
Answered by
0
The data type is string.
Explanation:
String is an immutable sequence data type. A string is a sequence of characters that are interpreted literally by a script. A character is simply a symbol.
For example, "hello world" and "LKJH019283" are both examples of strings.
Since 0xFF contains alphabets, and numbers , therefore it is a string.
Similar questions