-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckintegers.py
28 lines (24 loc) · 1.01 KB
/
checkintegers.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# the while loop will continue until an integer is entered
while True:
try:
# enter a number and make sure it is an integer
firstnumber=int(input("Enter a number: "))
# if an integer has been entered, it will break out of the while loop
break
# if it is not an integer, an error will be thrown
except ValueError:
print ("not an integer number; enter it again ")
print ("Thank you for entering the number ", firstnumber)
# the while loop will continue until an integer is entered
while True:
try:
# enter a number and make sure it is an integer
secondnumber = int(input("Enter a 2nd number: "))
# if an integer has been entered, it will break out of the while loop
break
# if it is not an integer, an error will be thrown
except ValueError:
print ("Not an integer number; enter it again.")
print ("Thank you for entering the number ", secondnumber)
product = firstnumber * secondnumber
print ("The product of the 2 numbers is: ", product)