Identify the types of the following literals. 23.78, 23, True, “True”, False, None
Answers
Answered by
4
Answer:
Question :
- Identify the types of the following literals. 23.78, 23, True, “True”, False, None
Answers:
- 23.78 - float
- 23 - int
- True - Boolean
- "True" - String
- False - Boolean
Explanation:
Answered by
3
Question:-
Identify the types of the following literals.
Answer:-
- 23.78 >> float literal.
- True >> boolean literal.
- "True" >> string literal.
- False >> boolean literal.
Similar questions