forked from qiwsir/StarterLearningPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path21601p3.py
More file actions
17 lines (16 loc) · 487 Bytes
/
21601p3.py
File metadata and controls
17 lines (16 loc) · 487 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python
# coding=utf-8
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