def gcd()
in
gcd.py [0:0]
7
lines of code
3
McCabe index (conditional complexity)
def gcd(a, b): while True: c = a % b if c == 0: return b a = b b = c