Skip to content

Instantly share code, notes, and snippets.

[Coursera] Python for everybody 5.2 Assignment
largest = None
smallest = None
while True:
inp = raw_input("Enter a number: ")
if inp == "done" : break
try:
num = float(inp)
except:
print ("Invalid input")
continue
if smallest is None:
smallest = num
if num > largest :
largest = num
elif num < smallest :
smallest = num
def done(largest,smallest):
print ("Maximum is", int(largest))
print ("Minimum is", int(smallest))
done(largest,smallest)
@boboqulovmaqsudjon1109
Copy link

image
not work this code

@Bizzer16
Copy link

Bizzer16 commented Jan 9, 2025

SmallestBiggestNumber
Tried to make it as clear as possible :D

@rovesoul
Copy link

rovesoul commented Jan 9, 2025 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment