QWhat is the name of the GUI that comes in-built as an interactive shell with Python?
Question Info
Choose the Best Option
Click any option to instantly check if you're correct.
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.