Write Python expression for each of the following conditions (assuming that num1, num2 are
numbers): 2
(a) num1 is equal num2.
(b) num1 is a multiple of 3 and 5.
Answers
Answered by
2
Explanation:
2×3
=6
6×5
=30
Not Sure about the ans
Pls Follow me
Answered by
0
Answer:
Explanation:
(a) num1 = num2
(b) num1 is a multiple of 3 and 5 , i.e, 15 will be a factor of num1
if 15 is factor of num1 that means the remainder when num1 is divided by 15 will be zero
so, num1%15 = 0
% symbols gives us the remainder of calculation in python and
Similar questions