KnowledgeBoat Logo
|

Computer Science

Assertion (A): Python comes with its own IDLE.

Reasoning (R): IDLE is Python's Integrated Development and Learning Environment which allows programmers to easily write, modify and execute Python programs.

  1. Both A and R are true and R is the correct explanation of A.
  2. Both A and R are true but R is not the correct explanation of A.
  3. A is true but R is false.
  4. A is false but R is true.

Getting Started

1 Like

Answer

Both A and R are true and R is the correct explanation of A.

Explanation
Python comes with its own IDLE, which is included with Python installations. IDLE is a simple Integrated Development and Learning Environment; it is a program that allows the user to edit, run, browse and debug a Python program from a single interface.

Answered By

2 Likes


Related Questions