-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFinaltest.py
51 lines (47 loc) · 1.49 KB
/
Finaltest.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
def adding_report(type="T"):
value=""
total=0
count=0
j=0
items=""
if(type=='T'):
print("Input an integer to add to the total or 'Q' to quit:")
while True:
value=input("Enter an integer or 'Q':")
if(value=='Q'):
break
elif(value=='q'):
break
elif(value=='Quit'):
break
if(value.isdigit()):
total=total+int(value)
elif(value.isalpha()):
print(value," is inavlid input")
print("Total")
print(total)
elif(type=='A'):
print("Input an integer to add to the total or 'Q' to quit:")
while True:
value=input("Enter an integer or 'Q':")
if(value=='Q'):
break
elif(value=='q'):
break
elif(value=='Quit'):
break
if(value.isdigit()):
count=count+1
items=items+value+"\n"
total=total+int(value)
elif(value.isalpha):
print(value," is inavlid input")
print("items:")
print("\n",items)
print("Total:")
print(total)
while True:
print("Report type includes All items report (A) or Total sum (T):")
type=input("Choose report type 'A' or 'T':")
adding_report(type)
break