Computer Science, asked by hrithwil122, 5 hours ago

write the output of given statement P=20 Q=8 print(P//Q) print(P/Q)​

Answers

Answered by sumankumari15590
0

Answer:

This your answer

I hope you like it

Attachments:
Answered by MichMich0945
0

Answer:

  • 2.
  • 2.5.

Explanation:

The // operator divides both of the operands and returns the quotient with no decimal value ( if present ).

Think of it as if you divide both of the operands and later covert the possibly float value into an integer value.

While the / operator divides both of the operands and returns the quotient with the decimal value ( if present ).

Hope this helps you <3

Similar questions