Single Choice Not Set

QWhat is the name of the GUI that comes in-built as an interactive shell with Python?

ID: #3388 Python Basic MCQ 367 views
Question Info
#3388Q ID
Not SetDifficulty
Python Basic MCQTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A PGUI
  • B Pyshell
  • C IDLE
  • D PythonSh
Correct Answer

Explanation

IDLE (Integrated Development and Learning Environment) is the default graphical user interface (GUI) that comes bundled with Python. It provides an interactive Python shell, a code editor, and debugging tools, making it ideal for beginners and experienced programmers alike.

Using IDLE, you can write Python programs, execute them, and test individual Python statements in the interactive shell.

Example of the Python interactive shell in IDLE:

>>> print("Hello, World!")
Hello, World!

>>> 10 + 20
30

The other options are incorrect because PGUI, Pyshell, and PythonSh are not the official built-in GUI environments provided with Python.

Therefore, the correct answer is Option C) IDLE.

Share This Question

Challenge a friend or share with your study group.