D 2012-09-04T02:59:18.702 L Process\sDiary\sfor\s4th\sSep P 702ee30697ae48614f58741284f7259dd0b50046 U Jax_Star W 649 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. ( is where a tab is inserted)
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 dac34e0d19d364d3ec1a63fb96d49abe