Skip to content
This repository has been archived by the owner on Feb 23, 2022. It is now read-only.

Commit

Permalink
Added `` around code and _ to variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
LauraTSD committed May 5, 2021
1 parent ad37663 commit 991de14
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 93 deletions.
112 changes: 56 additions & 56 deletions coursedata/level-defaults/en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -345,71 +345,71 @@
print(randomfruit)
13:
start_code: |-
youarestillhere is False
areyoustillhere is input('Are you still here? yes or no?')
if areyoustillhere is yes:
youarestillhere is True
if youarestillhere is True:
you_are_still_here is False
are_you_still_here is input('Are you still here? yes or no?')
if are_you_still_here is yes:
you_are_still_here is True
if you_are_still_here is True:
print('Hello!')
if youarestillhere is False:
if you_are_still_here is False:
print('Bye!')
intro_text: "We are now talking about making a variable True or False, you can put a variable on True and on False. You can use this to keep track of a certain answer."
intro_text: "We are now talking about making a variable `True` or `False`, you can put a variable on `True` and on `False`. You can use this to keep track of a certain answer."
commands:
- name: "Example"
explanation: "In this example, we use True and False to keep track of the answer of a question. You can answer 5 times. If the answer is correct, goodanswer will be True"
example: "goodanswer is False"
demo_code: |-
for i in range(1,5):
goodanswer is False
answer is input('What is 5*5')
if answer is 25:
goodanswer is True
else:
goodanswer is False
if goodanswer is True:
print('That is correct!')
if goodanswer is False:
print('That is wrong! ' 5-i ' attempts left')
explanation: "In this example, we use `True` and `False` to keep track of the answer of a question. You can answer 5 times. If the answer is correct, good_answer will be `True`"
example: "good_answer is `False`"
demo_code: |-
for i in range(1,5):
good_answer is False
answer is input('What is 5*5')
if answer is 25:
good_answer is True
else:
good_answer is False
if good_answer is True:
print('That is correct!')
if good_answer is False:
print('That is wrong! ' 5-i ' attempts left')
14:
start_code: |-
youarestillhere is False
areyoustillhere is input('Are you still here? yes or no?')
if areyoustillhere is yes:
youarestillhere is True
you_are_still_here is False
are_you_still_here is input('Are you still here? yes or no?')
if are_you_still_here is yes:
you_are_still_here is True
answer is input('What is 5*5?')
if youarestillhere is True and answer is 25:
if you_are_still_here is True and answer is 25:
print('You said yes and gave a good answer')
intro_text: "We are now going to learn and and or! If you want to check two statements, you don't have to use two if's but can use and and or. If you use and, both statements, left and right of the and need to be true. We can also use or. Then only one statement needs to be correct."
intro_text: "We are now going to learn `and` and `or`! If you want to check two statements, you don't have to use two if's but can use `and` and `or`. If you use `and`, both statements, left and right of the `and` need to be true. We can also use `or`. Then only one statement needs to be correct."
commands:
- name: "And"
explanation: "Both statements (left and right of the and) need to be correct."
explanation: "Both statements (left and right of the `and`) need to be correct."
example: "if 3+2 is 5 and 2+2 is 4"
demo_code: |-
answer1 is input('What is 3+2?')
answer2 is input('What is 2+2?')
if answer1 is 5 and answer2 is 4:
print('Both answers are correct!')
else:
print('At least one answer is wrong!')
answer1 is input('What is 3+2?')
answer2 is input('What is 2+2?')
if answer1 is 5 and answer2 is 4:
print('Both answers are correct!')
else:
print('At least one answer is wrong!')
- name: "Or"
explanation: "Or is dus of. Minimaal 1 van de twee tussen de or moet goed zijn. Allebei goed mag ook."
explanation: "`Or` At least 1 of the two statements left and right of the `or`, needs to be correct, if both are correct, it is also fine."
example: "if 3+2 is 5 or 2+2 is 4"
demo_code: |-
answer1 is input('What is 3+2?')
answer2 is input('What is 2+2?')
if answer1 is 5 or answer2 is 4:
print('At least one answer is correct!')
else:
print('Both answers are wrong!')
answer1 is input('What is 3+2?')
answer2 is input('What is 2+2?')
if answer1 is 5 or answer2 is 4:
print('At least one answer is correct!')
else:
print('Both answers are wrong!')
15:
start_code: |-
# This is a program that is going to ask a couple of math questions
for i in range(1,10):
# We are going to ask the multiplication table of 5
answer is input('What is ' i ' times 5?')
# We check if the answer is the same as our sum
correctanswer is i * 5
if answer is correctanswer:
correct_answer is i * 5
if answer is correct_answer:
print(answer ' is correct')
else:
print('That is wrong, it is supposed to be: ' i*5)
Expand All @@ -430,46 +430,46 @@
print('You are younger than me!')
elif age > 12:
print('You are older than me!')
intro_text: "We are going to learn more new items! You might know them already from mathematics, the < and >. The < checks if the first number is smaller than the second, like 4 < 5. The > checks if the first number is bigger than the second, like 6 >5."
intro_text: "We are going to learn more new items! You might know them already from mathematics, the `<` and `>`. The `<` checks if the first number is smaller than the second, like `4 < 5`. The `>` checks if the first number is bigger than the second, like `6 > 5`."
commands:
- name: "Smaller"
explanation: "We use the < to check if the first number is smaller than the second number. For example if we want to see if a variable is smaller than 15, we use variable < 15"
explanation: "We use the `<` to check if the first number is smaller than the second number. For example if we want to see if a variable is smaller than 15, we use `variable < 15`"
example: "For example: age < 12"
demo_code: |-
age is input('How old are you?')
if age < 12:
print('You are younger than me!')
- name: "Bigger"
explanation: "We use the > to check if the first number is bigger than the second number. For example if we want to see if a variable is bigger than 15, we use variable > 15"
explanation: "We use the `>` to check if the first number is bigger than the second number. For example if we want to see if a variable is bigger than 15, we use `variable > 15`"
example: "For example: age > 12"
demo_code: |-
age is input('How old are you?')
if age > 12:
print('You are older than me!')
17:
start_code: |-
correctanswer is False
correct_answer is False
# we continue until the correct answer has been given!
while correctanswer is False:
while correct_answer is False:
answer is input('What is 5 times 5?')
if answer is 25:
correctanswer is True
correct_answer is True
print('A good answer has been given')
intro_text: "We are going to learn a new loop, the While loop! We continue the loop as long as the statement is true/valid! So at the example code, we continue until a correct answer has been given. If the correct answer is never given, the loop never ends!"
intro_text: "We are going to learn a new loop, the `while` loop! We continue the loop as long as the statement is true/valid! So at the example code, we continue until a correct answer has been given. If the correct answer is never given, the loop never ends!"
commands:
- name: "Boolean while"
explanation: "We can use the while loop with True and False"
example: "Example: while correctanswer is False"
explanation: "We can use the `while` loop with `True` and `False`"
example: "Example: while correct_answer is False"
demo_code: |-
correctanswer is False
correct_answer is False
# we continue until the correct answer has been given!
while correctanswer is False:
while correct_answer is False:
answer is input('What is 5 times 5?')
if answer is 25:
correctanswer is True
correct_answer is True
print('A good answer has been given')
- name: "Smaller while"
explanation: "We can also use the while loop with < and >. Be careful, you need to change the number so the loop ends. We do that with count is count + 1 now."
explanation: "We can also use the `while` loop with `<` and `>`. Be careful, you need to change the number so the loop ends. We do that with count is count + 1 now."
example: "For example: while count < 3"
demo_code: |-
count is 1
Expand Down
74 changes: 37 additions & 37 deletions coursedata/level-defaults/nl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -380,44 +380,44 @@
print(randomfruit)
13:
start_code: |-
jebenternog is False
benjeernog is input('ben je er nog? ja of nee?')
if benjeernog is ja:
jebenternog is True
if jebenternog is True:
je_bent_er_nog is False
ben_je_er_nog is input('ben je er nog? ja of nee?')
if ben_je_er_nog is ja:
je_bent_er_nog is True
if je_bent_er_nog is True:
print('Hallo!')
if jebenternog is False:
if je_bent_er_nog is False:
print('Doei!')
intro_text: "We gaan nu het hebben over waar en niet waar, je kan een variabele op waar zetten (True) en op niet waar zetten: (False). Dit kan je bijvoorbeeld gebruiken om bij te houden of je al iets heb gedaan."
intro_text: "We gaan nu het hebben over waar en niet waar, je kan een variabele op waar zetten (`True`) en op niet waar zetten: (`False`). Dit kan je bijvoorbeeld gebruiken om bij te houden of je al iets heb gedaan."
commands:
- name: "Voorbeeld"
explanation: "Hierbij een voorbeeldje van een vraag om een rekensom te beantwoorden. Je mag 5 keer antwoord geven. Als het goed is, maakt het goedantwoord True (dus waar)"
example: "goedantwoord is False"
explanation: "Hierbij een voorbeeldje van een vraag om een rekensom te beantwoorden. Je mag 5 keer antwoord geven. Als het goed is, maakt het goed_antwoord `True` (dus waar)"
example: "goed_antwoord is `False`"
demo_code: |-
for i in range(0,5):
goedantwoord is False
goed_antwoord is False
antwoord is input('Wat is 5*5')
if antwoord is 25:
goedantwoord is True
goed_antwoord is True
else:
goedantwoord is False
if goedantwoord is True:
goed_antwoord is False
if goed_antwoord is True:
print('Dat is goed!')
if goedantwoord is False:
if goed_antwoord is False:
print('Dat is fout! Nog ' 5-i ' pogingen over')
14:
start_code: |-
jebenternog is False
benjeernog is input('ben je er nog? ja of nee?')
if benjeernog is ja:
jebenternog is True
je_bent_er_nog is False
ben_je_er_nog is input('ben je er nog? ja of nee?')
if ben_je_er_nog is ja:
je_bent_er_nog is True
antwoord is input('Wat is 5*5?')
if jebenternog is True and antwoord is 25:
if je_bent_er_nog is True and antwoord is 25:
print('Je hebt ja gezegd en een goed antwoord gegeven!')
intro_text: "We gaan nu and en or gebruiken! Als je 2 dingen wilt checken hoef je niet meer 2 ifjes in elkaar te doen maar kan je nu and gebruiken. Beide dingen in de if moeten waar zijn als je een and gebruikt. We kunnen ook or gebruiken. Daarbij moet er 1 van de twee waar zijn."
intro_text: "We gaan nu `and` en `or` gebruiken! Als je 2 dingen wilt checken hoef je niet meer 2 ifjes in elkaar te doen maar kan je nu `and` gebruiken. Beide dingen in de if moeten waar zijn als je een `and` gebruikt. We kunnen ook `or` gebruiken. Daarbij moet er 1 van de twee waar zijn."
commands:
- name: "And"
explanation: "And is dus en. Beide dingen links en rechts van de and moeten waar zijn."
explanation: "`And` is dus en. Beide dingen links en rechts van de `and` moeten waar zijn."
example: "if 3+2 is 5 and 2+2 is 4"
demo_code: |-
antwoord1 is input('hoeveel is 3+2?')
Expand All @@ -427,7 +427,7 @@
else:
print('Minimaal 1 antwoord is fout!')
- name: "Or"
explanation: "Or is dus of. Minimaal 1 van de twee tussen de or moet goed zijn. Allebei goed mag ook."
explanation: "`Or` is dus of. Minimaal 1 van de twee tussen de `or` moet goed zijn. Allebei goed mag ook."
example: "if 3+2 is 5 or 2+2 is 4"
demo_code: |-
antwoord1 is input('hoeveel is 3+2?')
Expand All @@ -443,8 +443,8 @@
# We gaan de van de tafel van 5 vragen
antwoord is input('Hoeveel is ' i ' keer 5?')
# We kijken of de som gelijk is aan het antwoord
goedeantwoord is i * 5
if antwoord is goedeantwoord:
goed_antwoord is i * 5
if antwoord is goed_antwoord:
print(antwoord ' is goed')
else:
print('Dat is fout, het moet zijn: ' i*5)
Expand All @@ -465,46 +465,46 @@
print('Dan ben je jonger dan ik!')
elif leeftijd > 12:
print('Dan ben je ouder dan ik!')
intro_text: "We gaan nieuwe tekens leren, je kent ze misschien wel van rekenen/wiskunde, < en >. De < kijkt of het eerste getal kleiner is dan de tweede zoals 4 < 5. De > kijkt of iets groter is dan het tweede getal zoals 6 > 5."
intro_text: "We gaan nieuwe tekens leren, je kent ze misschien wel van rekenen/wiskunde, `<` en `>`. De `<` kijkt of het eerste getal kleiner is dan de tweede zoals `4 < 5`. De `>` kijkt of iets groter is dan het tweede getal zoals `6 > 5`."
commands:
- name: "Kleiner"
explanation: "De < kijkt dus of het eerste getal kleiner is dan het tweede getal. Als je wilt kijken of een variabele kleiner is dan 15 gebruik je variabele < 15"
explanation: "De `<` kijkt dus of het eerste getal kleiner is dan het tweede getal. Als je wilt kijken of een variabele kleiner is dan 15 gebruik je `variabele < 15`"
example: "Bijvoorbeeld: leeftijd < 12"
demo_code: |-
leeftijd is input('Hoe oud ben jij?')
if leeftijd < 12:
print('Dan ben je jonger dan ik!')
- name: "Groter"
explanation: "De > kijkt dus of het eerste getal groter is dan het tweede getal. Als je wilt kijken of een variabele groter is dan 15 gebruik je variabele > 15"
explanation: "De `>` kijkt dus of het eerste getal groter is dan het tweede getal. Als je wilt kijken of een variabele groter is dan 15 gebruik je `variabele > 15`"
example: "Bijvoorbeeld: leeftijd > 12"
demo_code: |-
leeftijd is input('Hoe oud ben jij?')
if leeftijd > 12:
print('Dan ben je ouder dan ik!')
17:
start_code: |-
goedantwoord is False
goed_antwoord is False
# we gaan door totdat een goed antwoord is gegeven!
while goedantwoord is False:
while goed_antwoord is False:
antwoord is input('Wat is 5 keer 5?')
if antwoord is 25:
goedantwoord is True
goed_antwoord is True
print('Er is een goed antwoord gegeven')
intro_text: "Nu gaan we een nieuwe loop leren: De While loop! We gaan door zo lang het statement dat we hebben waar is! Dus bij de voorbeeldcode gaan we door totdat er een goed antwoord is gegeven. Als er nooit een goed antwoord wordt gegeven, dan stopt de loop nooit!"
intro_text: "Nu gaan we een nieuwe loop leren: De `while` loop! We gaan door zo lang het statement dat we hebben waar is! Dus bij de voorbeeldcode gaan we door totdat er een goed antwoord is gegeven. Als er nooit een goed antwoord wordt gegeven, dan stopt de loop nooit!"
commands:
- name: "Boolean while"
explanation: "We kunnen dus een while loop gebruiken met de True en False"
example: "Bijvoorbeeld: while goedantwoord is False"
explanation: "We kunnen dus een `while` loop gebruiken met de `True` en `False`"
example: "Bijvoorbeeld: while goed_antwoord is False"
demo_code: |-
goedantwoord is False
goed_antwoord is False
# we gaan door totdat een goed antwoord is gegeven!
while goedantwoord is False:
while goed_antwoord is False:
antwoord is input('Wat is 5 keer 5?')
if antwoord is 25:
goedantwoord is True
goed_antwoord is True
print('Er is een goed antwoord gegeven')
- name: "Smaller while"
explanation: "We kunnen een while loop ook gebruiken met < en >. Let wel op dat je het getal ooit groter maakt. Anders ga je de loop nooit uit"
explanation: "We kunnen een `while` loop ook gebruiken met `<` en `>`. Let wel op dat je het getal ooit groter maakt. Anders ga je de loop nooit uit"
example: "Bijvoorbeeld: while tel < 3"
demo_code: |-
tel is 1
Expand Down

0 comments on commit 991de14

Please sign in to comment.