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
|
import server
mod = server.problems.load_language('python', 'sl')
id = 201
name = 'Consumers anonymous'
slug = 'Consumers anonymous'
description = '''\
<p>(translation missing)</p>'''
main_plan = ['''\
''']
while_condition = ['''\
''']
while_clause = ['''\
'''
]
plan = [main_plan,
while_condition]
hint = {
'while_clause': while_clause,
'while_condition': while_condition,
'printing': ['''\
'''],
'nonumber': ['''<p><p>'''],
'summation': ['''<p><p>'''],
'counting': ['''<p><p>'''],
'name_error' : [mod.general_msg['error_head'],
mod.general_msg['general_exception'],
mod.general_msg['name_error'],
'''\
'''],
'problematic_test_case': ['''\
'''],
'final_hint': ['''\
'''],
'eof_error':[mod.general_msg['eof_error'],
'''\
''']
}
|