Open In App

Python | Operators | Question 1

Like Article
Like
Save
Share
Report

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


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads