what will be the output of the following python code?
a,b=10,50
if b% a==0
print(b//4)
print(a/2)
else:
print(a**2)
Answers
Answered by
0
Answer:
gggggggghhhghghghghghghghghhghghghgh
Explanation:
Answered by
2
Answer:
12
5
Explanation:
if b modulo a ==0 : True
therefore that section will be executed
hope it helps
Similar questions