-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.py
More file actions
37 lines (36 loc) · 1.16 KB
/
data.py
File metadata and controls
37 lines (36 loc) · 1.16 KB
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
# TODO: add your users and hashed passwords here
users = {'john@doe.com': '$2b$12$/TYFvXOy9wDQUOn5SKgTzedwiqB6cm.UIfPewBnz0kUQeK9Eu4mSC',
'asd@asd.hu': 'asd',
'asd@asd.com': 'asd'}
questions = {
"I ______ bus on Mondays.": {
"a. 'm going to work with": False,
"b. 'm going to work by": False,
"c. go to work with": False,
"d. go to work by": True
},
"Sorry, but this chair is ______.": {
"a. me": False,
"b. mine": True,
"c. my": False,
"d. our": False
},
"A: 'How old ______?' B: 'I ______ .'": {
"a. are you / am 20 years old.": True,
"b. have you / have 20 years old.": False,
"c. are you / am 20 years.": False,
"d. do you have / have 20 years.": False
},
"I ______ to the cinema.": {
"a. usually don't go": False,
"b. don't usually go": True,
"c. don't go usually": False,
"d. do not go usually": False
},
"Where ______ ?": {
"a. your sister works": False,
"b. your sister work": False,
"c. does your sister work": True,
"d. do your sister work": False
}
}