In previous chapters, you wrote code that Python runs from top to bottom. In this chapter, you’ll make your programs talk: they can ask the user questions (input) and show answers or messages (output).
- Input = data coming into your program (from the user).
- Output = data your program sends out (to the screen, a file, etc.).
Here we focus on simple keyboard input and text output to the screen using the terminal.