use of // operator in python
Answers
Answered by
3
Answer:
// is called as floor division
Floor division - division that results into whole number adjusted to the left in the number line
example:
x = 15
y = 4
x // y = 3
print('x // y =',x//y)
Your output will be:
x // y = 3
Answered by
0
Answer:
here is your answer buddy
Explanation:
// symbol is used for floor division
Floor division - division that results into whole number adjusting to the left in number line.
eg: 10//3
10 divided by 3 you will get 3.3.
Has a whole number you will get 4 so,
10//3 = 4
if you like this answer please thank and mark this answer has brainliest answer.
thankyou buddy
Similar questions