Beispiel #1
0
def q27():
  s1, t1 = qu.ask_fill_in_the_blank_question(['justified',
                                    'peace'], "Therefore, since we have been 1.______ by faith, we have 2._______ with God through our "
                                              "Lord Jesus Christ.")
  s2, t2 = qu.ask_number_question(5, "What chapter is this from?")
  s3, t3 = qu.ask_number_question(1, "What verse is this from?")
  return s1 + s2 + s3, t1 + t2 + t3
Beispiel #2
0
def wkst2_questions(chapter, verse_range, units, question_string):
    s1, t1 = qu.ask_fill_in_the_blank_question(units, question_string)
    s2, t2 = qu.ask_number_question(chapter, "What chapter is this from?")
    try:
        s3, t3 = qu.ask_number_range_question(verse_range[0], verse_range[1], "What verses is this from?")
    except TypeError:
        s3, t3 = qu.ask_number_question(verse_range, "What verse is this from?")
    return s1 + s2 + s3, t1 + t2 + t3
Beispiel #3
0
def q23():
    s1, t1 = qu.ask_fill_in_the_blank_question(['works',
                                      'law', 
                                      'justified'], 'For by 1._____ of the 2.______ no human being will be 3._____ in his sight, since '
                                                    'through the law comes knowledge of sin.')
    s2, t2 = qu.ask_number_question(3, "What chapter is this from?")
    s3, t3 = qu.ask_number_question(20, "What verse is this from?")
    return s1 + s2 + s3, t1 + t2 + t3
Beispiel #4
0
def q20():
    s1, t1 = qu.ask_fill_in_the_blank_question(['judges', 
                                      'judgment', 
                                      'judge'], "Therefore you have no excuse, O man, every one of you who 1.________. For in passing 2._______"
                                                "on another you condemn yourself, because you, the 3.______, practice the very same things")
    s2, t2 = qu.ask_number_question(2, "What chapter is this from?")
    s3, t3 = qu.ask_number_question(1, "What verse is this from?")
    return s1 + s2 + s3, t1 + t2 + t3
Beispiel #5
0
def q19():
    s1, t1 = qu.ask_fill_in_the_blank_question(['knew',
                                      'honor',
                                      'thanks'], "For although they 1._____ God, they did not 2._______ him as God or give 3._______ to him, "
                                                 "but they became futile in their thinking, and their foolish hearts were darkened'")
    s2, t2 = qu.ask_number_question(1, "What chapter is this from?")
    s3, t3 = qu.ask_number_question(21, "What verse is this from?")
    return s1 + s2 + s3, t1 + t2 + t3
Beispiel #6
0
def q18():
    s1, t1 = qu.ask_fill_in_the_blank_question(['wrath',
                                      'ungodliness',
                                      'truth'], "Fill in the blanks: 'For the 1._______ of God is revealed from heaven against all 2._______ "
                                                "and unrighteousness of men, who by their unrighteousness suppress the 3.________.'")
    s2, t2 = qu.ask_number_question(1, "What chapter is this from?")
    s3, t3 = qu.ask_number_question(18, "What verse is this from?")
    return s1 + s2 + s3, t1 + t2 + t3
Beispiel #7
0
def q22():
    s1, t1 = qu.ask_fill_in_the_blank_question(['advantage', 
                                      'entrusted', 
                                      'oracles'], "Then what 1._______ has the Jew? Or what is the value of circumcision? Much in every way. "
                                                  "To begin with, the Jews were 2.______ with the 3.______ of God.")
    s2, t2 = qu.ask_number_question(3, 'What chapter is this from?')
    s3, t3 = qu.ask_number_range_question(1, 2, "What verses is this from?")

    return s1 + s2 + s3, t1 + t2 + t3
Beispiel #8
0
def q21():
    s1, t1 = qu.ask_fill_in_the_blank_question(['evil', 
                                      'shows', 
                                      'partiality'], "There wil be tribulation and distress for every human being who does 1.______, the Jew "
                                                     "first and also the Greek, but glory and honor and peace for everyone who does good, the "
                                                     "Jew first and also the Greek. For God 2.______ no 3.________.")
    s2, t2 = qu.ask_number_question(2, "What chapter is this from?")
    s3, t3 = qu.ask_number_range_question(9, 11, "What verses is this from?")
    return s1 + s2 + s3, t1 + t2 + t3
Beispiel #9
0
def q32():
    s1, t1 = qu.ask_fill_in_the_blank_question(['good',
                                      'commandment'],
                                     "Did that which is 1.______, then, bring death to me? By no means! It was sin, "
                                     "producing death in me through what is good, in order that sin might be shown to "
                                     "be sin, and through the 2.______ might become sinful beyond measure.")
    s2, t2 = qu.ask_number_question(7, "What chapter is this from?")
    s3, t3 = qu.ask_number_question(13, "What verse is this from?")

    return s1 + s2 + s3, t1 + t2 + t3
Beispiel #10
0
def q29():
  s1, t1 = qu.ask_fill_in_the_blank_question(['buried',
                                    'walk',
                                    'newness'], "We were 1.______ therefore with him by baptism into death, in order that, just as "
                                                "Christ was raised from the dead by the glory of the Father, we too might 2._______ "
                                                "in 3._______ of life.")
  s2, t2 = qu.ask_number_question(6, "What chapter is this from?")
  s3, t3 = qu.ask_number_question(4, "What verse is this from?")

  return s1 + s2 + s3, t1 + t2 + t3
Beispiel #11
0
def q31():
    s1, t1 = qu.ask_fill_in_the_blank_question(['released',
                                      'Spirit',
                                      'written'],
                                     "But now we are 1.______ from the law, having died to that which held us captive, "
                                     "so that we serve in the new way of the 2._____ and not in the old way of the "
                                     "3._____ code.")
    s2, t2 = qu.ask_number_question(7, "What chapter is this from?")
    s3, t3 = qu.ask_number_question(6, "What verse is this from?")

    return s1 + s2 + s3, t1 + t2 + t3
Beispiel #12
0
def q30():
    s1, t1 = qu.ask_fill_in_the_blank_question(['obedient',
                                      'obey',
                                      'obedience'],
                                     "Do you not know that if you present yourselves to anyone as 1.______ slaves, "
                                     "you are slaves of the one whom you 2._____, either of sin, which leads to "
                                     "death, or of 3._____, which leads to righteousness?")
    s2, t2 = qu.ask_number_question(6, "What chapter is this from?")
    s3, t3 = qu.ask_number_question(16, "What verse is this from?")

    return s1 + s2 + s3, t1 + t2 + t3
Beispiel #13
0
def q26():
  s1, t1 = qu.ask_fill_in_the_blank_question(['sufferings',
                                    'suffering',
                                    'endurance',
                                    'endurance'], 'Not only that, but we rejoice in our 1._______, knowing that 2.______ produces 3._______, and'
                                                  '4.________ produces character, and character produces hope, and hope does not put us to shame, '
                                                  'because God\'s love has been poured into our hearts through the Holy Spirit who has been given '
                                                  'to us.')
  s2, t2 = qu.ask_number_question(5, "What chapter is this from?")
  s3, t3 = qu.ask_number_range_question(3, 5, "What verses are these from?")
  return s1 + s2 + s3, t1 + t2 + t3
Beispiel #14
0
def q25():
  s1, t1 = qu.ask_fill_in_the_blank_question(['promise',
                                    'offspring',
                                    'law',
                                    'righteousness'], 'For the 1._______ to Abraham and his 2._________ that he would be heir of the '
                                                      'world did not come through the 3._______ but through the '
                                                      '4._______ of faith.')
  s2, t2 = qu.ask_number_question(4, "What chapter is this from?")
  s3, t3 = qu.ask_number_question(13, "What verse is this from?")

  return s1 + s2 + s3, t1 + t2 + t3
Beispiel #15
0
def q24():
    s1, t1 = qu.ask_fill_in_the_blank_question(['wages', 
                                      'gift', 
                                      'due',
                                      'justifies',
                                      'righteousness'], 'Now to the one who works, his 1._____ are not counted as a 2._______, but as '
                                                        'his 3.______. And to the one who does not work but believes in him who '
                                                        '4.______ the ungodly, his faith is counted as 5.________')
    s2, t2 = qu.ask_number_question(4, "What chapter is this from?")
    s3, t3 = qu.ask_number_range_question(4, 5, 'What verses is this from?')
    return s1 + s2 + s3, t1 + t2 + t3
Beispiel #16
0
def q28():
  s1, t1 = qu.ask_fill_in_the_blank_question(['one', 'man'], "Therefore, just as sin came into the world through 1.______ 2._______, and death "
                                                   "through sin, and so death spread to all men because all sinned")
  s2, t2 = qu.ask_number_question(5, "What chapter is this from?")
  s3, t3 = qu.ask_number_question(12, "What verse is this from?")
  return s1 + s2 + s3, t1 + t2 + t3