-
Notifications
You must be signed in to change notification settings - Fork 2
/
statements.py
3236 lines (2939 loc) · 101 KB
/
statements.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from ansiwrap import wrap
from constants import ENGLISH, PORTUGUESE
question_number = 1
def statement(statement_1, statement_2, option_1, option_2, statement_1_type,
statement_2_type):
"""
The template for all statements of the test
It formats the statements given, reads user input based on the options
provided, and increases the score accordingly
"""
global question_number
statement_1_wrapped = wrap(
f"{question_number}. {statement_1} "
f"[{option_1}]", 80)
statement_2_wrapped = wrap(f"{statement_2} [{option_2}]", 80)
print("")
print("\n".join(statement_1_wrapped))
print("\n".join(statement_2_wrapped))
question_number += 1
while True:
answer = input().upper()
if answer == option_1:
statement_1_type += 1
break
elif answer == option_2:
statement_2_type += 1
break
elif answer == ">":
break
return statement_1_type, statement_2_type
def print_statements(language, types):
"""
Prints all test statements, based on the language chosen, and uses the
statements template declared in the function statement()
"""
if language == ENGLISH:
# Statement Pair 1
types["e_4"], types["b_6"] = statement(
"I've been romantic and imaginative.",
"I've been pragmatic and down-to-earth.",
"E",
"B",
types["e_4"],
types["b_6"],
)
# Statement Pair 2
types["g_8"], types["a_9"] = statement(
"I have a tendency towards confrontation.",
"I've tended to avoid confrontation.",
"G",
"A",
types["g_8"],
types["a_9"],
)
# Statement Pair 3
types["c_3"], types["d_1"] = statement(
"I've been typically diplomatic, charming and ambitious.",
"I've been typically direct, formal and idealistic.",
"C",
"D",
types["c_3"],
types["d_1"],
)
# Statement Pair 4
types["h_5"], types["i_7"] = statement(
"I've tended to be focused and intense.",
"I've tended to be spontaneous and fun-loving.",
"H",
"I",
types["h_5"],
types["i_7"],
)
# Statement Pair 5
types["f_2"], types["e_4"] = statement(
"I've been a hospitable person and have enjoyed welcoming "
"new friends into my life.",
"I've been a private person and did not mix much with "
"others.",
"F",
"E",
types["f_2"],
types["e_4"],
)
# Statement Pair 6
types["b_6"], types["a_9"] = statement(
"It's been hard for me to relax and stop worrying about "
"potential problems.",
"It's been hard for me to get upset about "
"potential problems.",
"B",
"A",
types["b_6"],
types["a_9"],
)
# Statement Pair 7
types["g_8"], types["d_1"] = statement(
'I\'ve been more of a "street-smart" survivor.',
'I\'ve been more of a "high-minded" idealist.',
"G",
"D",
types["g_8"],
types["d_1"],
)
# Statement Pair 8
types["f_2"], types["h_5"] = statement(
"I had to show affection to people.",
"I preferred to keep a certain distance from people.",
"F",
"H",
types["f_2"],
types["h_5"],
)
# Statement Pair 9
types["c_3"], types["i_7"] = statement(
"When I've been presented with a new experience, I've usually "
"asked myself if it would be useful to me.",
"When I've been presented with a new experience, I've usually "
"asked myself if it would be fun.",
"C",
"I",
types["c_3"],
types["i_7"],
)
# Statement Pair 10
types["e_4"], types["a_9"] = statement(
"I've tended to focus too much on myself.",
"I've tended to focus too much on others.",
"E",
"A",
types["e_4"],
types["a_9"],
)
# Statement Pair 11
types["h_5"], types["g_8"] = statement(
"Others have relied on my insight and knowledge.",
"Others have relied on my strength and determination.",
"H",
"G",
types["h_5"],
types["g_8"],
)
# Statement Pair 12
types["b_6"], types["d_1"] = statement(
"I've come across as too insecure.",
"I've come across as being too sure of myself.",
"B",
"D",
types["b_6"],
types["d_1"],
)
# Statement Pair 13
types["f_2"], types["c_3"] = statement(
"I've been more relationship oriented than goal oriented.",
"I've been more goal oriented than relationship oriented.",
"F",
"C",
types["f_2"],
types["c_3"],
)
# Statement Pair 14
types["e_4"], types["i_7"] = statement(
"I've not been very good at speaking up for myself very well.",
"I've been outspoken – I've said what others wish they "
"had the courage to say.",
"E",
"I",
types["e_4"],
types["i_7"],
)
# Statement Pair 15
types["h_5"], types["d_1"] = statement(
"It's been difficult for me to stop considering alternatives "
"and do something concrete.",
"It's been difficult for me to take it easy and be "
"more flexible.",
"H",
"D",
types["h_5"],
types["d_1"],
)
# Statement Pair 16
types["b_6"], types["g_8"] = statement(
"I've tended to be cautious and hesitant.",
"I've tended to be bold and domineering.",
"B",
"G",
types["b_6"],
types["g_8"],
)
# Statement Pair 17
types["a_9"], types["f_2"] = statement(
"My reluctance to get too involved has got me into trouble "
"with people.",
"My eagerness to have people depend on me has got me into "
"trouble with them.",
"A",
"F",
types["a_9"],
types["f_2"],
)
# Statement Pair 18
types["c_3"], types["e_4"] = statement(
"I've usually been able to put my feelings aside to get "
"the job done.",
"I've usually had to work through my feelings before I "
"could act.",
"C",
"E",
types["c_3"],
types["e_4"],
)
# Statement Pair 19
types["b_6"], types["i_7"] = statement(
"In general, I've been methodical and cautious.",
"In general, I've been adventurous and taken risks.",
"B",
"I",
types["b_6"],
types["i_7"],
)
# Statement Pair 20
types["f_2"], types["d_1"] = statement(
"I have tended to be a supportive, giving person who seeks "
"intimacy with others.",
"I have always been a serious, reserved person who likes "
"to discuss things.",
"F",
"D",
types["f_2"],
types["d_1"],
)
# Statement Pair 21
types["g_8"], types["c_3"] = statement(
'I\'ve often felt the need to be a "pillar of strength".',
"I've often felt the need to perform perfectly.",
"G",
"C",
types["g_8"],
types["c_3"],
)
# Statement Pair 22
types["h_5"], types["a_9"] = statement(
"I've always been interested in asking tough questions and "
"maintaining my independence.",
"I've always been interested in maintaining my stability "
"and peace of mind.",
"H",
"A",
types["h_5"],
types["a_9"],
)
# Statement Pair 23
types["b_6"], types["f_2"] = statement(
"I've been a little cynical and skeptical.",
"I've been a little mushy and sentimental.",
"B",
"F",
types["b_6"],
types["f_2"],
)
# Statement Pair 24
types["i_7"], types["g_8"] = statement(
"I've often worried that I'm missing out on something better.",
"I've often worried that if I let my guard down, someone will "
"take advantage of me.",
"I",
"G",
types["i_7"],
types["g_8"],
)
# Statement Pair 25
types["e_4"], types["d_1"] = statement(
"My habit of being aloof has annoyed people.",
"My habit of telling people what to do has annoyed people.",
"E",
"D",
types["e_4"],
types["d_1"],
)
# Statement Pair 26
types["a_9"], types["i_7"] = statement(
"I've tended to get anxious when there was too much excitement "
"and stimulation.",
"I've tended to get anxious when there wasn't enough "
"excitement and stimulation.",
"A",
"I",
types["a_9"],
types["i_7"],
)
# Statement Pair 27
types["b_6"], types["c_3"] = statement(
"I've depended on my friends, and they've known that they "
"can depend on me.",
"I've not depended on people, I've done things on my own.",
"B",
"C",
types["b_6"],
types["c_3"],
)
# Statement Pair 28
types["h_5"], types["e_4"] = statement(
"I've tended to be distant and preoccupied.",
"I've tended to be moody and self-absorbed.",
"H",
"E",
types["h_5"],
types["e_4"],
)
# Statement Pair 29
types["g_8"], types["f_2"] = statement(
'I have liked to challenge people and "shake them up".',
"I have liked to comfort and reassure people.",
"G",
"F",
types["g_8"],
types["f_2"],
)
# Statement Pair 30
types["i_7"], types["d_1"] = statement(
"I have generally been an outgoing, sociable person.",
"I have generally been a serious, self-disciplined person.",
"I",
"D",
types["i_7"],
types["d_1"],
)
# Statement Pair 31
types["a_9"], types["c_3"] = statement(
'I\'ve wanted to "fit in" with others – I get uncomfortable '
"when I stand out too much.",
"I've wanted to stand out from others – I feel uncomfortable "
"when I don't stand out.",
"A",
"C",
types["a_9"],
types["c_3"],
)
# Statement Pair 32
types["h_5"], types["b_6"] = statement(
"Pursuing my personal interests has been more important to me "
"than having stability and security.",
"Having stability and security has been more important to me "
"than pursuing my personal interests.",
"H",
"B",
types["h_5"],
types["b_6"],
)
# Statement Pair 33
types["e_4"], types["g_8"] = statement(
"When I've had conflicts with others, I've tended "
"to withdraw.",
"When I've had conflicts with others, I've rarely "
"backed down.",
"E",
"G",
types["e_4"],
types["g_8"],
)
# Statement Pair 34
types["a_9"], types["d_1"] = statement(
"I've given in too easily and let others push me around.",
"I've been too uncompromising and demanding with others.",
"A",
"D",
types["a_9"],
types["d_1"],
)
# Statement Pair 35
types["i_7"], types["f_2"] = statement(
"I've been appreciated for my unsinkable spirit and ingenuity.",
"I've been appreciated for my deep caring and "
"personal warmth.",
"I",
"F",
types["i_7"],
types["f_2"],
)
# Statement Pair 36
types["c_3"], types["h_5"] = statement(
"I've wanted to make a good impression on others.",
"I've cared little about making a good impression "
"on others.",
"C",
"H",
types["c_3"],
types["h_5"],
)
# Statement Pair 37
types["b_6"], types["e_4"] = statement(
"I've relied on my perseverance and common sense.",
"I've relied on my imagination and moments of inspiration.",
"B",
"E",
types["b_6"],
types["e_4"],
)
# Statement Pair 38
types["a_9"], types["g_8"] = statement(
"Basically, I've been easygoing and pleasant.",
"Basically, I've been hard-driving and assertive.",
"A",
"G",
types["a_9"],
types["g_8"],
)
# Statement Pair 39
types["c_3"], types["d_1"] = statement(
"I've worked hard to be accepted and liked.",
"Being accepted and liked has not been a high priority "
"for me.",
"C",
"D",
types["c_3"],
types["d_1"],
)
# Statement Pair 40
types["h_5"], types["i_7"] = statement(
"In response to pressure from others, I have become "
"more withdrawn.",
"In response to pressure from others, I have become "
"more assertive.",
"H",
"I",
types["h_5"],
types["i_7"],
)
# Statement Pair 41
types["f_2"], types["e_4"] = statement(
"People were interested in me because I've been "
"outgoing, engaging, and interested in them.",
"People were interested in me because I've been quiet, "
"unusual, and deep.",
"F",
"E",
types["f_2"],
types["e_4"],
)
# Statement Pair 42
types["b_6"], types["a_9"] = statement(
"Duty and responsibility have always been important values to me.",
"Harmony and acceptance have been important values for me.",
"B",
"A",
types["b_6"],
types["a_9"],
)
# Statement Pair 43
types["g_8"], types["d_1"] = statement(
"I've tried to motivate people by making big plans and "
"big promises.",
"I've tried to motivate people by pointing out the "
"consequences of not following my advice.",
"G",
"D",
types["g_8"],
types["d_1"],
)
# Statement Pair 44
types["h_5"], types["f_2"] = statement(
"I have rarely been emotionally demonstrative.",
"I have often been emotionally demonstrative.",
"H",
"F",
types["h_5"],
types["f_2"],
)
# Statement Pair 45
types["i_7"], types["c_3"] = statement(
"Dealing with details has not been one of my strong points.",
"I have excelled at dealing with details.",
"I",
"C",
types["i_7"],
types["c_3"],
)
# Statement Pair 46
types["e_4"], types["a_9"] = statement(
"I've often emphasized how different I am from other "
"people, especially my family.",
"I've often said how much I have in common with most "
"people, especially my family.",
"E",
"A",
types["e_4"],
types["a_9"],
)
# Statement Pair 47
types["h_5"], types["g_8"] = statement(
"When things got heated, I have tended to stay on "
"the sidelines.",
"When things got heated, I have tended to "
"get right in the middle of things.",
"H",
"G",
types["h_5"],
types["g_8"],
)
# Statement Pair 48
types["b_6"], types["d_1"] = statement(
"I have stood by my friends, even when they were wrong.",
"I have not wanted to compromise what is right, even for "
"friendship.",
"B",
"D",
types["b_6"],
types["d_1"],
)
# Statement Pair 49
types["f_2"], types["c_3"] = statement(
"I've been a well-intentioned supporter.",
"I've been a highly motivated go-getter.",
"F",
"C",
types["f_2"],
types["c_3"],
)
# Statement Pair 50
types["e_4"], types["i_7"] = statement(
"When troubled, I've tended to brood over my problems.",
"When troubled, I've tended to find distractions for "
"myself.",
"E",
"I",
types["e_4"],
types["i_7"],
)
# Statement Pair 51
types["d_1"], types["h_5"] = statement(
"In general, I've had strong beliefs and a sense of how "
"things should be.",
"In general, I had serious doubts and have questioned the way "
"things seemed to be.",
"D",
"H",
types["d_1"],
types["h_5"],
)
# Statement Pair 52
types["b_6"], types["g_8"] = statement(
"I've created problems for others by being pessimistic and "
"complaining.",
"I've created problems for others by being bossy and "
"controlling.",
"B",
"G",
types["b_6"],
types["g_8"],
)
# Statement Pair 53
types["f_2"], types["a_9"] = statement(
'I\'ve tended to act on my feelings and let the "chips fall '
'where they may".',
"I've tended not to act on my feelings lest they cause "
"more problems.",
"F",
"A",
types["f_2"],
types["a_9"],
)
# Statement Pair 54
types["c_3"], types["e_4"] = statement(
"Being the center of attention has usually felt natural "
"to me.",
"Being the center of attention has always felt strange "
"to me.",
"C",
"E",
types["c_3"],
types["e_4"],
)
# Statement Pair 55
types["b_6"], types["i_7"] = statement(
"I've been careful and have tried to prepare for unforeseen "
"problems.",
"I've been spontaneous, preferring to improvise when "
"problems arise.",
"B",
"I",
types["b_6"],
types["i_7"],
)
# Statement Pair 56
types["f_2"], types["d_1"] = statement(
"I've become angry when others have not shown enough "
"appreciation for what I've done for them.",
"I've become angry when others have not listened to what "
"I've told them.",
"F",
"D",
types["f_2"],
types["d_1"],
)
# Statement Pair 57
types["g_8"], types["c_3"] = statement(
"Being independent and self-reliant has been important to me.",
"Being appreciated and admired has been important to me.",
"G",
"C",
types["g_8"],
types["c_3"],
)
# Statement Pair 58
types["h_5"], types["a_9"] = statement(
"When I've debated with friends, I've tended to be forceful "
"in my arguments.",
"When I've argued with friends, I've tended to let things "
"go to avoid hard feelings.",
"H",
"A",
types["h_5"],
types["a_9"],
)
# Statement Pair 59
types["f_2"], types["b_6"] = statement(
"I've often been possessive of loved ones – I've had "
"trouble letting go.",
'I\'ve often "tested" loved ones to see if they were really '
"there for me.",
"F",
"B",
types["f_2"],
types["b_6"],
)
# Statement Pair 60
types["g_8"], types["i_7"] = statement(
"Organizing resources and making things happen has been "
"one of my greatest strengths.",
"Coming up with new ideas and getting people excited "
"about them has been one of my greatest strengths.",
"G",
"I",
types["g_8"],
types["i_7"],
)
# Statement Pair 61
types["d_1"], types["e_4"] = statement(
"I've tended to be driven and very hard on myself.",
"I've tended to be too emotional and rather undisciplined.",
"D",
"E",
types["d_1"],
types["e_4"],
)
# Statement Pair 62
types["i_7"], types["a_9"] = statement(
"I've tried to keep my life fast, intense, "
"and exciting.",
"I've tried to keep my life regular, stable, and peaceful.",
"I",
"A",
types["i_7"],
types["a_9"],
)
# Statement Pair 63
types["b_6"], types["c_3"] = statement(
"Even though I've had successes, I've tended to doubt "
"my abilities.",
"Even though I had setbacks, I've had a lot of confidence "
"in my abilities.",
"B",
"C",
types["b_6"],
types["c_3"],
)
# Statement Pair 64
types["e_4"], types["h_5"] = statement(
"In general, I've tended to dwell on my feelings and to hold "
"on to them for a long time.",
"In general, I've tended to minimize my feelings and not pay "
"very much attention to them.",
"E",
"H",
types["e_4"],
types["h_5"],
)
# Statement Pair 65
types["f_2"], types["g_8"] = statement(
"I have given attention and care to many people.",
"I have given direction and motivation to many people.",
"F",
"G",
types["f_2"],
types["g_8"],
)
# Statement Pair 66
types["d_1"], types["i_7"] = statement(
"I've been a little serious and strict with myself.",
"I've been a little freewheeling and permissive with myself.",
"D",
"I",
types["d_1"],
types["i_7"],
)
# Statement Pair 67
types["c_3"], types["a_9"] = statement(
"I've been assertive and driven to excel.",
"I've been modest and have been happy to go at my own pace.",
"C",
"A",
types["c_3"],
types["a_9"],
)
# Statement Pair 68
types["h_5"], types["b_6"] = statement(
"I've been proud of my clarity and objectivity.",
"I've been proud of my reliability and commitment.",
"H",
"B",
types["h_5"],
types["b_6"],
)
# Statement Pair 69
types["e_4"], types["g_8"] = statement(
"I've spent a lot of time looking inward – understanding my "
"feelings has been important to me.",
"I've not spent a lot of time looking inward – getting things "
"done has been important to me.",
"E",
"G",
types["e_4"],
types["g_8"],
)
# Statement Pair 70
types["a_9"], types["d_1"] = statement(
"In general, I've thought of myself as a sunny, "
"casual person.",
"In general, I've thought of myself as a serious, dignified "
"person.",
"A",
"D",
types["a_9"],
types["d_1"],
)
# Statement Pair 71
types["i_7"], types["f_2"] = statement(
"I've had a quick mind and boundless energy.",
"I've had a caring heart and deep devotion.",
"I",
"F",
types["i_7"],
types["f_2"],
)
# Statement Pair 72
types["c_3"], types["h_5"] = statement(
"I've engaged in activities that had significant potential "
"for reward and personal recognition.",
"I've been willing to give up rewards and personal "
"recognition if it meant doing work I was really "
"interested in.",
"C",
"H",
types["c_3"],
types["h_5"],
)
# Statement Pair 73
types["e_4"], types["b_6"] = statement(
"Fulfilling social obligations has rarely been high on "
"my agenda.",
"I have usually taken my social obligations very seriously.",
"E",
"B",
types["e_4"],
types["b_6"],
)
# Statement Pair 74
types["g_8"], types["a_9"] = statement(
"In most situations, I have preferred to take the lead.",
"In most situations, I have preferred to let someone else "
"take the lead.",
"G",
"A",
types["g_8"],
types["a_9"],
)
# Statement Pair 75
types["c_3"], types["d_1"] = statement(
"Over the years, my values and lifestyle have changed several "
"times.",
"Over the years, my values and lifestyle have remained fairly "
"consistent.",
"C",
"D",
types["c_3"],
types["d_1"],
)
# Statement Pair 76
types["i_7"], types["h_5"] = statement(
"Usually, I didn't have a lot of self-discipline.",
"Usually, I didn't have a lot of connection with people.",
"I",
"H",
types["i_7"],
types["h_5"],
)
# Statement Pair 77
types["e_4"], types["f_2"] = statement(
"I've tended to withhold my affection and have wanted "
"others to come into my world.",
"I've tended to give my affection too freely, wanting "
"to extend myself to others.",
"E",
"F",
types["e_4"],
types["f_2"],
)
# Statement Pair 78
types["b_6"], types["a_9"] = statement(
"I've had a tendency to think of worst-case scenarios.",
"I've had a tendency to think that everything will work out for "
"the best.",
"B",
"A",
types["b_6"],
types["a_9"],
)
# Statement Pair 79
types["g_8"], types["d_1"] = statement(
"People have trusted me because I am confident and can take care "
"of them.",
"People have trusted me because I am fair and will do what "
"is right.",
"G",
"D",
types["g_8"],
types["d_1"],
)
# Statement Pair 80
types["h_5"], types["f_2"] = statement(
"I've often been so involved in my own projects that I have "
"isolated myself from others.",
"I've often been so involved with others that I've neglected "
"my own projects.",
"H",
"F",
types["h_5"],
types["f_2"],
)
# Statement Pair 81
types["c_3"], types["i_7"] = statement(
"When I met someone new, I was usually self-contained and "
"reserved.",
"When I met someone new, I was usually been chatty and "
"entertaining.",
"C",
"I",
types["c_3"],
types["i_7"],
)
# Statement Pair 82
types["e_4"], types["a_9"] = statement(
"In general, I have tended to be pessimistic.",
"In general, I have tended to be optimistic.",
"E",
"A",
types["e_4"],
types["a_9"],
)
# Statement Pair 83
types["h_5"], types["g_8"] = statement(
"I've preferred to live my own little world.",
"I've preferred to let the world know that I'm here.",
"H",
"G",
types["h_5"],
types["g_8"],
)
# Statement Pair 84
types["b_6"], types["d_1"] = statement(
"I've often been plagued by nervousness, insecurity, and "
"doubt.",
"I've often been plagued by anger, perfectionism, and "
"impatience.",
"B",
"D",
types["b_6"],
types["d_1"],
)
# Statement Pair 85
types["f_2"], types["c_3"] = statement(
"I realize that I have often been too personal and intimate.",
"I realize that I have often been too cool and distant.",
"F",
"C",
types["f_2"],
types["c_3"],
)
# Statement Pair 86
types["e_4"], types["i_7"] = statement(
"I've lost out because I did not feel up to taking "
"advantage of opportunities.",
"I've lost out because I've pursued too many opportunities.",
"E",
"I",
types["e_4"],
types["i_7"],
)
# Statement Pair 87
types["h_5"], types["d_1"] = statement(
"I've tended to take a long time to get into action.",
"I've tended to get into action quickly.",
"H",
"D",