What is the output of Python statement : >>>print(9//2)?
a)4
b)4.5
c)5
d)Error
Answers
Answered by
3
Answer:
d]
error is ? is there
or else b] 4.5
Answered by
3
Answer:
d) Error
Explanation:
Syntax Error
print(9/2)?
The bold thing is the error
The correct syntax is
print(9/2)
Output is 4.5
Hope it helps
FOLLOW ME
Similar questions