File size: 1,319 Bytes
3e68ccf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
    "title": "Introduction to Python Programming",
    "slides": [
        {
            "heading": "Slide 1: Introduction",
            "bullet_points": [
                "Brief overview of Python and its importance",
                "Purpose of the tutorial"
            ]
        },
        {
            "heading": "Slide 2: Basic Data Types",
            "bullet_points": [
                "Strings (e.g. \"hello\")",
                "Integers (e.g. 42)",
                "Floats (e.g. 3.14)",
                "Booleans (e.g. True/False)",
                "Lists (e.g. [1, 2, 3])",
                "Tuples (e.g. (1, 2, 3))"
            ]
        },
        {
            "heading": "Slide 3: Strings",
            "bullet_points": [
                "String literals (e.g. \"hello\")",
                "String concatenation (e.g. \"hello\" + \" world\")",
                "String slicing (e.g. \"hello\"[0] = h)"
            ]
        },
        {
            "heading": "Slide 4: Integers",
            "bullet_points": [
                "Integer literals (e.g. 42)",
                "Arithmetic operations (e.g. 2 + 3 = 5)"
            ]
        },
        {
            "heading": "Slide 5: Floats",
            "bullet_points": [
                "Floating-point literals (e.g."
            ]
        }
    ]
}