|
1 | 1 | { |
2 | | - "title": "What is Python and how does it work?", |
| 2 | + "title": "What is Python and How Does It Work?", |
3 | 3 | "description": "", |
4 | 4 | "content": [ |
5 | 5 | { |
|
17 | 17 | { |
18 | 18 | "type": "list", |
19 | 19 | "items": [ |
20 | | - "Web development", |
21 | | - "Artificial Intelligence and Machine Learning", |
22 | | - "Data analysis", |
23 | | - "Task automation", |
24 | | - "Video game development", |
25 | | - "Server scripting", |
26 | | - "Desktop applications" |
| 20 | + "Web development.", |
| 21 | + "Artificial Intelligence and Machine Learning.", |
| 22 | + "Data analysis.", |
| 23 | + "Task automation.", |
| 24 | + "Video game development.", |
| 25 | + "Server scripting.", |
| 26 | + "Desktop applications." |
27 | 27 | ] |
28 | 28 | }, |
29 | 29 | { |
|
36 | 36 | }, |
37 | 37 | { |
38 | 38 | "type": "subtitle2", |
39 | | - "text": "✔ Simple syntax" |
| 39 | + "text": "✔ Simple Syntax" |
40 | 40 | }, |
41 | 41 | { |
42 | 42 | "type": "paragraph", |
|
56 | 56 | }, |
57 | 57 | { |
58 | 58 | "type": "test-button", |
59 | | - "text": "Try it >>", |
| 59 | + "text": "Try >>", |
60 | 60 | "code": "print('Hello, World')" |
61 | 61 | }, |
62 | 62 | { |
|
74 | 74 | { |
75 | 75 | "type": "list", |
76 | 76 | "items": [ |
77 | | - "Quickly testing ideas", |
78 | | - "Running code in interactive environments such as Pyodide (in the browser) or in a terminal", |
79 | | - "Detecting errors line by line" |
| 77 | + "Quickly testing ideas.", |
| 78 | + "Running code in interactive environments such as Pyodide (in the browser) or in a terminal.", |
| 79 | + "Detecting errors line by line." |
80 | 80 | ] |
81 | 81 | }, |
82 | 82 | { |
|
94 | 94 | { |
95 | 95 | "type": "list", |
96 | 96 | "items": [ |
97 | | - "Windows", |
98 | | - "macOS", |
99 | | - "Linux", |
100 | | - "Web browsers (gracias a Pyodide)", |
101 | | - "Servers", |
102 | | - "Microcontrollers (MicroPython)" |
| 97 | + "Windows.", |
| 98 | + "macOS.", |
| 99 | + "Linux.", |
| 100 | + "Web browsers (gracias a Pyodide).", |
| 101 | + "Servers.", |
| 102 | + "Microcontrollers (MicroPython)." |
103 | 103 | ] |
104 | 104 | }, |
105 | 105 | { |
106 | 106 | "type": "subtitle2", |
107 | | - "text": "✔ Dynamic typing" |
| 107 | + "text": "✔ Dynamic Typing" |
108 | 108 | }, |
109 | 109 | { |
110 | 110 | "type": "paragraph", |
|
120 | 120 | }, |
121 | 121 | { |
122 | 122 | "type": "subtitle1", |
123 | | - "text": "How does Python work internally?" |
| 123 | + "text": "How Does Python Work Internally?" |
124 | 124 | }, |
125 | 125 | { |
126 | 126 | "type": "subtitle2", |
|
137 | 137 | { |
138 | 138 | "type": "list", |
139 | 139 | "items": [ |
140 | | - "You write <code class=\"language-python\">program.py</code>", |
141 | | - "Python converts it into bytecode (<code class=\"language-python\">.pyc</code>)", |
142 | | - "The bytecode is executed on the Python Virtual Machine (PVM)" |
| 140 | + "You write <code class=\"language-python\">program.py</code>.", |
| 141 | + "Python converts it into bytecode (<code class=\"language-python\">.pyc</code>).", |
| 142 | + "The bytecode is executed on the Python Virtual Machine (PVM)." |
143 | 143 | ] |
144 | 144 | }, |
145 | 145 | { |
|
148 | 148 | }, |
149 | 149 | { |
150 | 150 | "type": "subtitle1", |
151 | | - "text": "What is Python used for?" |
| 151 | + "text": "What is Python Used For?" |
152 | 152 | }, |
153 | 153 | { |
154 | 154 | "type": "paragraph", |
|
200 | 200 | }, |
201 | 201 | { |
202 | 202 | "type": "paragraph", |
203 | | - "text": "Output" |
| 203 | + "text": "Output:" |
204 | 204 | }, |
205 | 205 | { |
206 | 206 | "type": "code", |
207 | 207 | "text": "What is your name? Daniel\nHello Daniel" |
208 | 208 | }, |
209 | 209 | { |
210 | 210 | "type": "test-button", |
211 | | - "text": "Try it >>", |
| 211 | + "text": "Try >>", |
212 | 212 | "code": "name = input('What is your name?')\nprint('Hello', name)" |
213 | 213 | }, |
214 | 214 | { |
215 | 215 | "type": "subtitle1", |
216 | | - "text": "Conclusion of the Topic" |
| 216 | + "text": "Unit Conclusions" |
217 | 217 | }, |
218 | 218 | { |
219 | 219 | "type": "paragraph", |
|
0 commit comments