Question: What syntax errors can you find with the code below? def GCD a,b while a != b if a > b a = a- b
What syntax errors can you find with the code below?
def GCD a,b
while a != b
if a > b
a = a- b
else
b = b- a print(GCD(15,25)
return a
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
