Report Bug
Qus :

What will be the output of the following Python code?

from math import*
print(floor(3.7))

Qus

निम्नलिखित पायथन कोड का आउटपुट क्या होगा?

from math import*
print(floor(3.7))


A. 3
B. 4
C. 3.0
D. None of These


Solution
A. 3






Report Bug