예제 #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
예제 #2
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
예제 #3
0
def wkst3_questions(chapter, verse_range, question):
    print(question)
    s1, t1 = qu.ask_number_question(chapter, "What chapter is this from?")
    try:
        s2, t2 = qu.ask_number_range_question(verse_range[0], verse_range[1], "What verses is it from?")
    except TypeError:
        s2, t2 = qu.ask_number_question(verse_range, "What verse is it from?")
    return s1 + s2, t1 + t2
예제 #4
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
예제 #5
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
예제 #6
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
예제 #7
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
예제 #8
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
예제 #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
예제 #10
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
예제 #11
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
예제 #12
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
예제 #13
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
예제 #14
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
예제 #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
예제 #16
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
예제 #17
0
def q105():
    return qu.ask_number_question(13, "Where is this talked about: Submit to the authorities and fulfill your "
                                             "duties. Above all, love each other.")
예제 #18
0
def q104():
    return qu.ask_number_question(12, "Where is this talked about: Therefore, in light of such a great mercy, "
                                             "offer yourselves as living sacrifices. Be united as a church as one "
                                             "body of Christ, and love each other, even enemies who persecute you.")
예제 #19
0
def q103():
    return qu.ask_number_question(11, "Where is this talked about: The Jewish people are the roots, and the "
                                             "Gentiles are like the branches that have been grafted into the spots "
                                             "where the branches have been broken off because of their unbelief.")
예제 #20
0
def q102():
    return qu.ask_number_question(11, "Where is this talked about: Although God chose Israel to carry his "
                                             "righteous laws, Israel did not reach it, because they did not pursue it"
                                             "by faith.")
예제 #21
0
def q101():
    return qu.ask_number_question(11, "Where is this talked about: Is it the case that Israel has been "
                                             "completely rejected by God? No, the Jewish Christians are the remnants.")
예제 #22
0
def q100():
    return qu.ask_number_question(10, "Where is this talked about: So this message of salvation is to "
                                             "everyone, both Jews and Gentiles.")
예제 #23
0
def q99():
    return qu.ask_number_question(9, "Where is this talked about: All of this is from Israel (Jacob), whom God "
                                            "chose in His sovereignty. We are not in the position to question his "
                                            "sovereign choice.")
예제 #24
0
def q98():
    return qu.ask_number_question(8, "Where is this talked about: And the Holy Spirit who dwells in you "
                                            "testifies that you are adopted as children, and the Spirit even "
                                            "intercedes for us. So there is the guarantee that nothing can separate "
                                            "us from the love of God.")
예제 #25
0
def q108():
    return qu.ask_number_question(15, "Where is this talked about: Although Jesus came primarily to the Jews, "
                                             "the goal of all this was to have the gospel to go to the Gentiles,"
                                             " as it says in the Old Testament. That's why I (Paul) go to the "
                                             "Gentiles to preach the gospel.")
예제 #26
0
def q106():
    return qu.ask_number_question(14, "Where is this talked about: Don't quarrel over Jewish/Gentile foods, but "
                                             "also be mindful not to stumble anyoe through your actions.")
예제 #27
0
def q107():
    return qu.ask_number_question(15, "Where is this talked about: Live in harmony, following the example of "
                                             "Christ, who did not please himself, but built up others.")
예제 #28
0
def q96():
    return qu.ask_number_question(7, "Where is this talked about: THe fact that we recognize the law is good is "
                                            "shown in our internal battle, but ironically, we seem powerless to do "
                                            "what the good law tells us to do.")
예제 #29
0
def q109():
    return qu.ask_number_question(16, "Where is this talked about: Greet certain named people, but watch out for"
                                             "divisive people. Goodbye.")
예제 #30
0
def q97():
    return qu.ask_number_question(7, "Where is this talked about: Who can rescue us from this predicament?"
                                            " Only through Jesus Christ.")