Esempio n. 1
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
Esempio n. 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
Esempio n. 3
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
Esempio n. 4
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
Esempio n. 5
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
Esempio n. 6
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
Esempio n. 7
0
def q10():
    return qu.ask_number_range_question(37, 50, "What's the range of chapters in which the events of Joseph's life take place?")
Esempio n. 8
0
def q9():
    return qu.ask_number_range_question(25, 49, "What's the range of chapters in which the events of Jacob's life take place?")
Esempio n. 9
0
def q8():
    return qu.ask_number_range_question(21, 35, "What's the range of chapters in which the events of Isaac's life take place?")
Esempio n. 10
0
def q7():
    return qu.ask_number_range_question(12, 25, "What's the range of chapters in which the events of Abram's life take place?")