C-16-Q091mediumsingle_mcq
Which operator is used for the modulo (remainder) operation in Python?
Which operator is used for the modulo (remainder) operation in Python?
- a
* - b
/ - c
% - d
^
ব্যাখ্যা
The percent sign % is Python's modulo operator, returning the remainder of a division. For example, .