Bus. Apps Quiz Review -
This chapter covered:
Main hardware components of the computer
Types of software
How data is stored in a computer
Basic CPU operations and machine language
Fetch-decode-execute cycle
Complex languages and their translation to machine code
Installing Python and the Python interpreter modes
IDLE is an integrated development environment that combines sev-
eral development tools into one program, including the following:
. A Python shell running in interactive mode. You can type
Python statements at the shell prompt and immediately execute
them. You can also run complete Python programs.
. A text editor that color codes Python keywords and other parts
of programs.
. A "check module" tool that checks a Python program for syntax
errors without running the program.
. Search tools that allow you to find text in one or more files.
· Text formatting tools that help you maintain consistent inden-
tation levels in a Python program.
. A debugger that allows you to single-step through a Python
program and watch the values of variables change as each
statement executes.
. Several other advanced tools for developers.
How to run a program in python IDLE
How to save a Program in Python IDLE
How to automatic indent on Python IDLE
How to color code in Pyhton IDLE
How to write a python program in IDLE editor
How to start IDLE and using the python shell