Computer Science, asked by 31samruddhipatil, 1 month ago

In Python create a program to check whether a number is completely divisible by 10 or not.

Answers

Answered by saiquafarheen68
9

Answer:

remainder = 10 % 2.

is_divisible = remainder == 0. Check if 10 is divisible by 2.

print(is_divisible)

I HOPE IT WILL HELP U DEAR❤

Similar questions