Python | Operators | Question 1
What is the output of the following code :
Python3
print 9 / / 2 |
(A)
4.5
(B)
4.0
(C)
4
(D)
Error
Answer: (C)
Explanation:
The ‘//’ operator in Python returns the integer part of the floating number.
Quiz of this Question
Please comment below if you find anything wrong in the above post
Please Login to comment...