-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcriminal.py
68 lines (44 loc) · 872 Bytes
/
criminal.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
52
53
54
55
56
57
58
59
60
61
62
63
64
import time
def rapih(dictionary):
for key,value in dictionary.items():
print (f'{key} : {value}' )
john = {
"Fullname" : "John Smith",
"Age" : "25",
"Crime" : "Stealing"
}
bill = {
"Fullname" : "Bill Turner",
"Age" : "30",
"Crime" : "Drug Dealing"
}
rose = {
"Fullname" : "Rose Miller",
"Age" : "45",
"Crime" : "Car Theft"
}
james = {
"Fullname" : "James Richard",
"Age" : "27",
"Crime" : "Burglary"
}
real_password = "america"
b= 0
password =""
while password != real_password:
password = input("password please: ")
while b < 3:
b += 1
for x in range(0,4):
time.sleep(0.5)
print("logging in"+"." * x)
print("\n")
print("MOST WANTED LIST")
print("----------------")
rapih(john)
print(" \n")
rapih(bill)
print(" \n")
rapih(rose)
print(" \n")
rapih(james)