Skip to content

Commit 8ce0ae2

Browse files
committed
reviewing module1-learning-unit2-en
1 parent cc90f2b commit 8ce0ae2

1 file changed

Lines changed: 35 additions & 35 deletions

File tree

data/modules/module1/learning-units/learning-unit2/learning-unit2-en.json

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"title": "Your first program: <code class=\"language-python\">print()</code>",
2+
"title": "Your First Program: <code class=\"language-python\">print()</code>",
33
"description": "",
44
"content": [
55
{
66
"type": "subtitle1",
7-
"text": "What is a program in Python?"
7+
"text": "What is a Program in Python?"
88
},
99
{
1010
"type": "paragraph",
@@ -16,7 +16,7 @@
1616
},
1717
{
1818
"type": "subtitle1",
19-
"text": "The <code class=\"language-python\">print()</code> function: your first tool"
19+
"text": "The <code class=\"language-python\">print()</code> Function: Your First Tool"
2020
},
2121
{
2222
"type": "paragraph",
@@ -40,7 +40,7 @@
4040
},
4141
{
4242
"type": "test-button",
43-
"text": "Try it >>",
43+
"text": "Try >>",
4444
"code": "print(\"Hello, World\")"
4545
},
4646
{
@@ -49,11 +49,11 @@
4949
},
5050
{
5151
"type": "subtitle1",
52-
"text": "What can I display with <code class=\"language-python\">print()</code>?"
52+
"text": "What Can I Display With <code class=\"language-python\">print()</code>?"
5353
},
5454
{
5555
"type": "subtitle2",
56-
"text": "Text (strings - <code class=\"language-python\">str</code>)"
56+
"text": "Text (Strings - <code class=\"language-python\">str</code>)"
5757
},
5858
{
5959
"type": "code",
@@ -77,7 +77,7 @@
7777
},
7878
{
7979
"type": "test-button",
80-
"text": "Try them all >>",
80+
"text": "Try Them All >>",
8181
"code": "print(\"Learning Python is fun\")\n\nprint(2025)\n\nname = \"Python\"\nprint(name)"
8282
},
8383
{
@@ -94,7 +94,7 @@
9494
},
9595
{
9696
"type": "subtitle1",
97-
"text": "Display multiple values at once"
97+
"text": "Display Multiple Values At Once"
9898
},
9999
{
100100
"type": "paragraph",
@@ -114,7 +114,7 @@
114114
},
115115
{
116116
"type": "test-button",
117-
"text": "Try it >>",
117+
"text": "Try >>",
118118
"code": "print(\"Your age is:\", 22)"
119119
},
120120
{
@@ -123,7 +123,7 @@
123123
},
124124
{
125125
"type": "subtitle1",
126-
"text": "How <code class=\"language-python\">print()</code> works internally"
126+
"text": "How <code class=\"language-python\">print()</code> Works Internally"
127127
},
128128
{
129129
"type": "paragraph",
@@ -136,13 +136,13 @@
136136
{
137137
"type": "list",
138138
"items": [
139-
"<code class=\"language-python\">sep</code> → Defines the separator between elements",
140-
"<code class=\"language-python\">end</code> → Defines what is printed at the end of the line"
139+
"<code class=\"language-python\">sep</code> → Defines the separator between elements.",
140+
"<code class=\"language-python\">end</code> → Defines what is printed at the end of the line."
141141
]
142142
},
143143
{
144144
"type": "subtitle2",
145-
"text": "Example using <code class=\"language-python\">sep</code>:"
145+
"text": "Example Using <code class=\"language-python\">sep</code>:"
146146
},
147147
{
148148
"type": "code",
@@ -158,12 +158,12 @@
158158
},
159159
{
160160
"type": "test-button",
161-
"text": "Try it >>",
161+
"text": "Try >>",
162162
"code": "print(\"Python\", \"JavaScript\", \"Go\", sep=\" | \")"
163163
},
164164
{
165165
"type": "subtitle2",
166-
"text": "Example using <code class=\"language-python\">end</code>:"
166+
"text": "Example Using <code class=\"language-python\">end</code>:"
167167
},
168168
{
169169
"type": "code",
@@ -179,7 +179,7 @@
179179
},
180180
{
181181
"type": "test-button",
182-
"text": "Try it >>",
182+
"text": "Try >>",
183183
"code": "print(\"Hello\", end=\"...\")\nprint(\"World\")"
184184
},
185185
{
@@ -188,7 +188,7 @@
188188
},
189189
{
190190
"type": "subtitle1",
191-
"text": "Spaces, newlines, and special characters"
191+
"text": "Spaces, Newlines, and Special Characters"
192192
},
193193
{
194194
"type": "paragraph",
@@ -197,10 +197,10 @@
197197
{
198198
"type": "list",
199199
"items": [
200-
"<code class=\"language-python\">\\n</code> → Newline",
201-
"<code class=\"language-python\">\\t</code> → Tab",
202-
"<code class=\"language-python\">\\\"</code> → Quotes Within Quotes",
203-
"<code class=\"language-python\">\\\\</code> → Literal Backslash"
200+
"<code class=\"language-python\">\\n</code> → Newline.",
201+
"<code class=\"language-python\">\\t</code> → Tab.",
202+
"<code class=\"language-python\">\\\"</code> → Quotes Within Quotes.",
203+
"<code class=\"language-python\">\\\\</code> → Literal Backslash."
204204
]
205205
},
206206
{
@@ -221,7 +221,7 @@
221221
},
222222
{
223223
"type": "test-button",
224-
"text": "Try it >>",
224+
"text": "Try >>",
225225
"code": "print(\"Line 1\\nLine 2\\nLine 3\")"
226226
},
227227
{
@@ -230,7 +230,7 @@
230230
},
231231
{
232232
"type": "subtitle1",
233-
"text": "A very common mistake when using <code class=\"language-python\">print()</code>"
233+
"text": "A Very Common Mistake When Using <code class=\"language-python\">print()</code>"
234234
},
235235
{
236236
"type": "paragraph",
@@ -246,12 +246,12 @@
246246
},
247247
{
248248
"type": "test-button",
249-
"text": "Try error >>",
249+
"text": "Try Error >>",
250250
"code": "print(\"Hello)"
251251
},
252252
{
253253
"type": "subtitle1",
254-
"text": "Minimal structure of a Python program"
254+
"text": "Minimal Structure of a Python Program"
255255
},
256256
{
257257
"type": "code",
@@ -271,7 +271,7 @@
271271
},
272272
{
273273
"type": "test-button",
274-
"text": "Try it >>",
274+
"text": "Try >>",
275275
"code": "print(\"Hello from my first Python program\")"
276276
},
277277
{
@@ -296,12 +296,12 @@
296296
},
297297
{
298298
"type": "test-button",
299-
"text": "Try it >>",
299+
"text": "Try >>",
300300
"code": "print(\"First line\")\nprint(\"Second line\")"
301301
},
302302
{
303303
"type": "subtitle1",
304-
"text": "Guided exercise: your first real script"
304+
"text": "Guided Exercise: Your First Real Script"
305305
},
306306
{
307307
"type": "paragraph",
@@ -325,12 +325,12 @@
325325
},
326326
{
327327
"type": "test-button",
328-
"text": "Try it >>",
328+
"text": "Try >>",
329329
"code": "name = \"YOUR NAME\"\nprint(\"Welcome,\", name, \"to the world of Python!\")"
330330
},
331331
{
332332
"type": "subtitle1",
333-
"text": "Conclusion of the topic"
333+
"text": "Unit Conclusions"
334334
},
335335
{
336336
"type": "paragraph",
@@ -339,11 +339,11 @@
339339
{
340340
"type": "list",
341341
"items": [
342-
"What a program in Python is",
343-
"How <code class=\"language-python\">print()</code> works",
344-
"How to use <code class=\"language-python\">sep</code> and <code class=\"language-python\">end</code>",
345-
"How to control newlines and tabs",
346-
"How to write a minimal valid program"
342+
"What a program in Python is.",
343+
"How <code class=\"language-python\">print()</code> works.",
344+
"How to use <code class=\"language-python\">sep</code> and <code class=\"language-python\">end</code>.",
345+
"How to control newlines and tabs.",
346+
"How to write a minimal valid program."
347347
]
348348
},
349349
{

0 commit comments

Comments
 (0)