Python Input and Output Quiz

This python input and output quiz help you understand print() and input() built-in function. Also covered questions of file handling.

1. What is the output of

print('[%c]' % 65)

 

 
 
 
 

2. Which of the following is incorrect file handling mode in Python

 
 
 
 

3. What is true for file mode x

 
 
 

4. What is the output of the following program

print('{0:.2}'.format(1.0 / 3))

 

 
 
 

5. What will be displayed as an output on the screen

 
 
 

6. Which of the following is incorrect file handling mode in Python

 
 
 
 

7. What is the output of the expression : 3*1**3

 
 
 
 

8. What is the output of the following program

print('{0:-2%}'.format(1.0 / 3))

 

 
 
 
 

9. What is the output of the following code?

print('%x, %X' % (10, 10))

 

 
 
 
 

10. In Python3, Whatever you enter as input, the input() function converts it into a string

 
 

11. In Python3, which functions are used to accept input from the user

 
 
 
 

12. What is the output of the following print() function

 
 
 

13. Use the following file to predict the output of the code

test.txt Content:

aaa
bbb
ccc
ddd
eee
fff
ggg

Code:

f = open("test.txt", "r")
print(f.readline(3))
f.close()

 

 
 
 
 

Also play following quizzes

Support CodeSnail

If you appreciate my work, or if it has helped you along your journey. It would mean a lot to me if you could write a message on my wall and share a cup of coffee (or tea) with me.

Buy Me A Coffee
Your subscription could not be saved. Please try again.
Your subscription has been successful.

Newsletter

Subscribe to our newsletter and stay updated.

Leave a Comment