8. Identify the data types of the values given below: d) 2.89 b) "64" c) [4,7,9) d) (12,34,54)
Answers
Answered by
4
Answer:
(a) float, as 2.89 is a fractional number/decimal number.
(b) string, enclosed under double quotes.
(c) list, enclosed in square brackets '[]'.
(d) tuple, enclosed in parentheses '()'.
Explanation:
In python, the following are the data types
- int
- float
- complex number
- list
- tuple
- dictionary
Similar questions