Computer Science, asked by Rebelcore269, 7 months ago

Identify the types of the following literals. 23.78, 23, True, “True”, False, None

Answers

Answered by BrainlyProgrammer
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 anindyaadhikari13
3

Question:-

Identify the types of the following literals.

Answer:-

  1. 23.78 >> float literal.
  2. True >> boolean literal.
  3. "True" >> string literal.
  4. False >> boolean literal.
Similar questions