forked from qiwsir/StarterLearningPython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path21702.py
28 lines (25 loc) · 732 Bytes
/
21702.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
#!/usr/bin/env python
# coding=utf-8
"""
try... except
"""
while 1:
print "this is a division program."
c = raw_input("input 'c' continue, otherwise logout:")
if c == 'c':
a = raw_input("first number:")
b = raw_input("second number:")
try:
print float(a)/float(b)
print "*************************"
#except ZeroDivisionError:
# print "The second number can't be zero!"
# print "*************************"
#except ValueError:
# print "please input number."
# print "************************"
except:
print "some wrong..."
print "********************"
else:
break