-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathP_1.py
More file actions
33 lines (33 loc) · 869 Bytes
/
Copy pathP_1.py
File metadata and controls
33 lines (33 loc) · 869 Bytes
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
numblist = list()
while True:
inp = input('Enter_Code :')
if inp == 'done' : break
try :
value = float(inp)
numblist.append(value)
code = sum(numblist)
if sum(numblist) == 41203995:
lst = list()
lst.append('Age :')
lst.append(24)
lst.append(20)
print(lst)
ddd = dict()
ddd['My Age'] = '19/08/1996'
ddd['Rukaiya Age'] = '22/12/1999'
#ddd['Rukki'] = 'meow'
print(ddd)
Age = dict()
Age['Add'] = lst[1] + lst[2]
#print(Age)
break
if value != 19081996:
print('Err_Imposter')
break
if value != 22121999:
print('Error_Imposter')
break
except :
print('Err')
continue
quit()