IST_Individual_Task

Artifact [702ee30697]
Login

Artifact 702ee30697ae48614f58741284f7259dd0b50046:

Wiki page [Process Diary for 4th Sep] by Jax_Star 2012-09-04 02:54:08.
D 2012-09-04T02:54:08.083
L Process\sDiary\sfor\s4th\sSep
P 0f5019af3dbd16857665807ed165071010d0e75d
U Jax_Star
W 577
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" </br>

Here is the code for Q1.<br>
<i>def find_middle(a, b, c): <br>
    if a >= b:<br>
        if b >= c:<br>
            return b<br>
        elif a >= c:<br>
            return c<br>
        else:<br>
            return a<br>
    elif b >= a:<br>
        if a >= c:<br>
            return a<br>
        elif c >= b:<br>
            return b<br>
        else:<br>
            return c</i>
Z a869970006dc1589c7857ca70c19cd73