D 2012-09-04T02:53:31.652 L Process\sDiary\sfor\s4th\sSep P ae6bd381633fa43cad9f46a5fac488672e761962 U Jax_Star W 590 Today I worked on the NCSS Python Challenge I completed the first question "Middle Number" in the first period and set to work on the second question "What Did Zou Saz"
Here is the code for Q1.
def find_middle(a, b, c):
if a >= b:
if b >= c:
return b
elif a >= c:
return c
else:
return a
elif b >= a:
if a >= c:
return a
elif c >= b:
return b
else:
return c
Z 911694c60e60f8eef776bde4db432a50