本文整理汇总了Python中oasis.lib.General.get_exam_qs方法的典型用法代码示例。如果您正苦于以下问题:Python General.get_exam_qs方法的具体用法?Python General.get_exam_qs怎么用?Python General.get_exam_qs使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类oasis.lib.General
的用法示例。
在下文中一共展示了General.get_exam_qs方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: student_exam_duration
# 需要导入模块: from oasis.lib import General [as 别名]
# 或者: from oasis.lib.General import get_exam_qs [as 别名]
def student_exam_duration(student, exam_id):
""" How long did the assessment take.
returns starttime, endtime
either could be None if it hasn't been started/finished
"""
firstview = None
examsubmit = Exams.get_submit_time(exam_id, student)
questions = General.get_exam_qs(student, exam_id)
# we're working out the first time the assessment was viewed is the
# earliest time a question in it was viewed
# It's possible (although unlikely) that they viewed a question
# other than the first page, first.
for question in questions:
questionview = DB.get_q_viewtime(question)
if firstview:
if questionview < firstview:
firstview = questionview
else:
firstview = questionview
return firstview, examsubmit
示例2: render_own_marked_exam
# 需要导入模块: from oasis.lib import General [as 别名]
# 或者: from oasis.lib.General import get_exam_qs [as 别名]
def render_own_marked_exam(student, exam):
""" Return a students instance of the exam, with HTML
version of the question,
their answers, and a marking summary.
returns list of questions/marks
[ {'pos': position,
'html': rendered (marked) question,
'marking': [ 'part': part number,
'guess': student guess,
'correct': correct answer,
'mark': (float) mark,
'tolerance': marking tolerance,
'comment': marking comment
]
}, ...
]
"""
questions = General.get_exam_qs(student, exam)
firstview, examsubmit = student_exam_duration(student, exam)
results = []
if not examsubmit:
return [{'pos': 1,
'html': "In Progress",
'marking': {}
}, ], False
examtotal = 0.0
for question in questions:
qtemplate = DB.get_q_parent(question)
answers = DB.get_q_guesses_before_time(question, examsubmit)
pos = DB.get_qt_exam_pos(exam, qtemplate)
marks = General.mark_q(question, answers)
parts = [int(var[1:])
for var in marks.keys()
if re.search("^A([0-9]+$)", var) > 0]
parts.sort()
marking = []
for part in parts:
guess = marks['G%d' % (part,)]
if guess == "None":
guess = None
answer = marks['A%d' % (part,)]
score = marks['M%d' % (part,)]
tolerance = marks['T%d' % (part,)]
comment = marks['C%d' % (part,)]
examtotal += score
marking.append({
'part': part,
'guess': guess,
'correct': answer,
'mark': score,
'tolerance': tolerance,
'comment': comment
})
html = General.render_q_html(question)
results.append({
'pos': pos,
'html': html,
'marking': marking
})
return results, examtotal