-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_dict.py
33 lines (33 loc) · 1.27 KB
/
test_dict.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
survey = {"Total": {"Total": 1000},
"Question1": {"A": {"Total": 100,
"Race": {
"White": 25,
"Black": 75
},
"Gender": {
"Male": 30,
"Female": 70
}
},
"B": {"Total": 100,
"Race": {
"White": 20,
"Black": 80
},
"Gender": {
"Male": 70,
"Female": 30
}
}
},
"Question2": {"A": {"Total": 100,
"Race": {
"White": 10,
"Black": 90},
"Gender": {
"Male": 50,
"Female": 50
}
}
}
}