Making a short little program which takes 3 numbers and tells you the largest one. Im a very new leaer so the code is really basic, but it should work.
https://gist.github.com/anonymous/32cd9a53a876e8b5714e3344d6a1898a#file-gistfile1-txt
Basically, if I input the numbers as 1,2,3/3,2,1/2,3,1, the result is expected (it says that 3 is the largest number, which it should. But if I enter in something like 2,1,3, it says that 2 is the largest number. this shouldn't make sense since it should it should check if both number1 and number2 are larger than number 3, which they arent, but it still outputs 2 as the largest. is there any fault with my code. remember, im a begier (like chapter 2 in a python book new), so i really dont know if this is right or not, but i cant see why it would be wrong.
