forked from qiwsir/StarterLearningPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtryexceptccb.py
More file actions
19 lines (18 loc) · 499 Bytes
/
tryexceptccb.py
File metadata and controls
19 lines (18 loc) · 499 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# coding:utf-8
'''
filename: tryexceptccb.py
'''
while 1:
print("this is a division program.")
c = input("input 'c' continue, otherwise logout:")
if c == 'c':
a = input("first number:")
b = input("second number:")
try:
print(float(a)/float(b))
print("*************************")
except ZeroDivisionError:
print("The second number can't be zero!")
print("*************************")
else:
break