Answers for "which of the following operator is used to find remainder in python?"

7

how to get the remainder in python

a = 10
b = 3

c = a % b
print(c) # Prints 1
Posted by: Guest on November-18-2019

Code answers related to "which of the following operator is used to find remainder in python?"

Python Answers by Framework

Browse Popular Code Answers by Language