Skip to content

Instantly share code, notes, and snippets.

@AmruthPillai
Created August 21, 2017 14:30
Show Gist options
  • Save AmruthPillai/77026640f8be299fd3d61e740034c1fa to your computer and use it in GitHub Desktop.
Save AmruthPillai/77026640f8be299fd3d61e740034c1fa to your computer and use it in GitHub Desktop.
Write a program that repeatedly prompts a user for integer numbers until the user enters 'done'. Once 'done' is entered, print out the largest and smallest of the numbers. If the user enters anything other than a valid number catch it with a try/except and put out an appropriate message and ignore the number.
"""
Write a program that repeatedly prompts a user for integer numbers until the user enters 'done'. Once 'done' is entered, print out the largest and smallest of the numbers. If the user enters anything other than a valid number catch it with a try/except and put out an appropriate message and ignore the number.
"""
largest = None
smallest = None
while True:
try:
num = raw_input("Enter a number: ")
if num == 'done':
break;
n = int(num)
largest = num if largest < num or largest == None else largest
smallest = num if smallest > num or smallest == None else smallest
except:
print "Invalid input"
print "Maximum number is ", largest
print "Minimum number is ", smallest
@vicxny
Copy link

vicxny commented Jul 14, 2023

Capture
largest = None
smallest = None
while True:
num = input("Enter a number: ")
if num == "done":
break;
try:
n = int(num)
if largest is None or n > largest:
largest = n
elif smallest is None or n < smallest:
smallest = n
except:
print("Invalid input")
continue

print("Maximum is", largest)
print("Minimum is", smallest)

#My solution: Indentation is important and remembering when inputting the numbers don't space by accident.
No need to add space after is in the print Function because the input function would add the space before.

@skyweb3
Copy link

skyweb3 commented Sep 13, 2023

What is the role of 'continue' statement in the 'except:' part of the code after the print statement?

@kameerobin
Copy link

largest = None
smallest = None
while True:
try:
num = input("Enter a number: ")
if num == "done":
break
num = int(num)
if largest is None or num > largest:
largest = num
elif smallest is None or num < smallest:
smallest = num
except:
print("Invalid input")
continue

print("Maximum is", largest)
print("Minimum is", smallest)

@FardadF4
Copy link

largest = None
smallest = None
while True:
num = raw_input("Enter a number: ")
if num == "done" : break
try:
num = int(num)
except:
print("Invalid input")
continue

if largest is None:
    largest = num
elif num > largest:
    largest = num
if smallest is None:
    smallest = num
elif num < smallest:
    smallest = num

print("Maximum is", largest)
print("Minimum is", smallest)

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