This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Implement a function that takes as input three variables, and returns the | |
#largest of the three. Do this without using the Python max() function! | |
def max_of_three(a,b,c): | |
if a > b: | |
print a | |
elif a > c: | |
print a | |
else: |
NewerOlder