Skip to content

Commit 986e231

Browse files
committed
Fix test transcript
1 parent 01c6682 commit 986e231

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

backend/main/test_transcript.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5311,7 +5311,7 @@
53115311
"step": "same_list"
53125312
},
53135313
{
5314-
"page": "Nested Loops",
5314+
"page": "Introducing Nested Loops",
53155315
"program": [
53165316
"for letter in \"ABC\":",
53175317
" print(letter)",
@@ -5460,7 +5460,7 @@
54605460
"step": "first_nested_loop"
54615461
},
54625462
{
5463-
"page": "Nested Loops",
5463+
"page": "Introducing Nested Loops",
54645464
"program": [
54655465
"for letter in \"ABC\":",
54665466
" print(letter)",
@@ -5634,7 +5634,7 @@
56345634
"step": "first_nested_loop_with_line"
56355635
},
56365636
{
5637-
"page": "Nested Loops",
5637+
"page": "Introducing Nested Loops",
56385638
"program": [
56395639
"for letter in \"ABC\":",
56405640
" print(letter)",
@@ -5915,7 +5915,7 @@
59155915
"step": "first_nested_loop_with_two_arg_print"
59165916
},
59175917
{
5918-
"page": "Nested Loops",
5918+
"page": "Introducing Nested Loops",
59195919
"program": [
59205920
"print(1 + \"x\")"
59215921
],
@@ -5968,7 +5968,7 @@
59685968
"step": "times_table_exercise"
59695969
},
59705970
{
5971-
"page": "Nested Loops",
5971+
"page": "Introducing Nested Loops",
59725972
"program": [
59735973
"for left in range(12):",
59745974
" left += 1",
@@ -9571,7 +9571,7 @@
95719571
"step": "times_table_exercise"
95729572
},
95739573
{
9574-
"page": "Nested Loops",
9574+
"page": "Introducing Nested Loops",
95759575
"program": [
95769576
"2 x 3"
95779577
],
@@ -9628,7 +9628,7 @@
96289628
"step": "times_table_exercise"
96299629
},
96309630
{
9631-
"page": "Nested Loops",
9631+
"page": "Introducing Nested Loops",
96329632
"program": [
96339633
"for left in range(12):",
96349634
" left += 1",
@@ -15519,7 +15519,7 @@
1551915519
"step": "times_table_exercise"
1552015520
},
1552115521
{
15522-
"page": "Nested Loops",
15522+
"page": "Introducing Nested Loops",
1552315523
"program": [
1552415524
"players = ['Alice', 'Bob', 'Charlie']",
1552515525
"for player1 in players:",
@@ -15703,7 +15703,7 @@
1570315703
"step": "player_vs_player_exercise"
1570415704
},
1570515705
{
15706-
"page": "Nested Loops",
15706+
"page": "Introducing Nested Loops",
1570715707
"program": [
1570815708
"letters = 'AB'",
1570915709
"for c1 in letters:",
@@ -15858,7 +15858,7 @@
1585815858
"<p>Building up a line of characters should be very familiar from previous exercises, the only difference is that you have to make it a given length instead of just the same length as another string.</p>",
1585915859
"<p>An easy way to do something <code>n</code> times is to loop over <code>range(n)</code>. </p>",
1586015860
"<p>You need to use a for loop inside a for loop.</p>",
15861-
"<p>You need numbers that count down, like 5, 4, 3, 2, 1. There is a way to do this with range, and you can easily look it up, but it's also easy to use a normal range and do some very simple maths to convert numbers counting up into numbers counting down.</p>",
15861+
"<p>You need numbers that count down, like 5, 4, 3, 2, 1. There is a way to do this with <code>range</code>, and you can easily look it up, but it's also easy to use a normal range and do some very simple maths to convert numbers counting up into numbers counting down.</p>",
1586215862
"<p>What formula converts 0 into 5, 1 into 4, 2, into 3, etc?</p>"
1586315863
],
1586415864
"page_index": 29,
@@ -15872,7 +15872,7 @@
1587215872
"step": "crack_password_exercise"
1587315873
},
1587415874
{
15875-
"page": "Nested Loops",
15875+
"page": "Introducing Nested Loops",
1587615876
"program": [
1587715877
"size = 3",
1587815878
"for i in range(size):",

0 commit comments

Comments
 (0)