what is the data type of print(print(0×FF))
Answers
Answered by
0
Answer:
If you are not sure what class a value falls into, Python has a function called type which can tell you. print(type("Hello, World!")) Not surprisingly, strings belong to the class str and integers belong to the class int. ... The value of the string is the sequence of characters inside the quotes.
Similar questions