Topic 1 - Python IDEs Flashcards
1
Q
What does IDE stand for?
A
Integrated Development Environment.
2
Q
What is the name of the IDE that comes by default with Python?
A
IDLE
3
Q
IDLE uses colour coding to differentiate python code.
What colour is the following:
- Comments
- Strings
- Keywords
- Definition you create
- Use of built-ins
- Standard output
- Standard errors
- Standard user input
A
- Red
- Green
- Orange
- Blue
- Purple
- Blue
- Red
- Black