|
3 | 3 | "description": "In this module, you will learn what Python is and how to create your first programs. You will learn how to display text, use variables, work with numbers and strings, perform basic operations, and interact with the user through data input.", |
4 | 4 | "steps": [ |
5 | 5 | { |
6 | | - "name": "1. What is Python and how does it work?", |
| 6 | + "name": "1. What is Python and How Does It Work?", |
7 | 7 | "description": "Introduction to the language, its features, readable syntax, and its uses.", |
8 | 8 | "color": "#FFD43B", |
9 | 9 | "unit": "learning-unit1" |
10 | 10 | }, |
11 | 11 | { |
12 | | - "name": "2. Your first program:<code>print()</code>", |
| 12 | + "name": "2. Your First Program: <code>print()</code>", |
13 | 13 | "description": "How to display text on the screen and understand the basic structure of a program.", |
14 | 14 | "color": "#3776AB", |
15 | 15 | "unit": "learning-unit2" |
16 | 16 | }, |
17 | 17 | { |
18 | | - "name": "3. Comments and basic code style", |
| 18 | + "name": "3. Comments and Basic Code Style", |
19 | 19 | "description": "Using <code>#</code> to document code and keep it readable.", |
20 | 20 | "color": "#1B983A", |
21 | 21 | "unit": "learning-unit3" |
22 | 22 | }, |
23 | 23 | { |
24 | | - "name": "4. Variables and basic data types", |
| 24 | + "name": "4. Variables and Basic Data Types", |
25 | 25 | "description": "What variables are, how to create them, and the most common types: <code>int</code>, <code>float</code>, <code>str</code>, <code>bool</code>.", |
26 | 26 | "color": "#6464FF", |
27 | 27 | "unit": "learning-unit4" |
28 | 28 | }, |
29 | 29 | { |
30 | | - "name": "5. Mathematical and text operations", |
| 30 | + "name": "5. Mathematical and Text Operations", |
31 | 31 | "description": "Using <code>+</code>, <code>-</code>, <code>*</code>, <code>/</code> operators, string concatenation, and repetition", |
32 | 32 | "color": "#FFD43B", |
33 | 33 | "unit": "learning-unit5" |
34 | 34 | }, |
35 | 35 | { |
36 | | - "name": "6. Data input with <code>input()</code>", |
| 36 | + "name": "6. Data Input With <code>input()</code>", |
37 | 37 | "description": "How to receive information from the user and process it.", |
38 | 38 | "color": "#3776AB", |
39 | 39 | "unit": "learning-unit6" |
|
0 commit comments