Basic Input and Output in Python Quiz
Interactive Quiz ⋅ 5 Questions
By Martin Breuss
In this quiz, you’ll test your understanding of how to use Python’s built-in functions input()
and print()
for basic input and output operations.
You’ll also revisit how to use readline
to improve the user experience when collecting input, and how to format output using the sep
and end
keyword arguments of print()
.
The quiz contains 5 questions and there is no time limit. You’ll get 1 point for each correct answer. At the end of the quiz, you’ll receive a total score. The maximum score is 100%. Good luck!
Related Resources
Course
Reading Input and Writing Output in Python
In this introductory Python course, you'll learn how to take user input from the keyboard with the built-in function input() and how to display output to the console with the built-in function print().
Tutorial
Basic Input, Output, and String Formatting in Python
In this step-by-step Python tutorial, you'll learn how to take user input from the keyboard with the built-in function input(), how to display output to the console with the built-in function print(), and how to format string data with Python f-strings.