@@ -15,31 +15,31 @@ both are equally fine.
1515
1616???- info "A concept map to show how all themes are connected"
1717
18- ``` mermaid
19- flowchart TD
20- python[[Python]]
21-
22- user_input[User input]
23- file_io[File I/O]
24- command_line_arguments[Command-line arguments]
25- variables[Variables]
26- operators[Operators]
27- functions[Functions]
28- python_packages[Python packages]
29- graphics[Graphics]
30-
31-
32- python --> |has| python_packages
33- python --> |has| variables
34- python --> |has| functions
35- python --> |has| operators
36- functions --> |use| variables
37- operators --> |work on| variables
38- python_packages --> |allow| graphics
39- python_packages --> |allow to use| user_input
40- python_packages --> |allow to do| file_io
41- python_packages --> |allow to use| command_line_arguments
42- ```
18+ ```mermaid
19+ flowchart TD
20+ python[[Python]]
21+
22+ user_input[User input]
23+ file_io[File I/O]
24+ command_line_arguments[Command-line arguments]
25+ variables[Variables]
26+ operators[Operators]
27+ functions[Functions]
28+ python_packages[Python packages]
29+ graphics[Graphics]
30+
31+
32+ python --> |has| python_packages
33+ python --> |has| variables
34+ python --> |has| functions
35+ python --> |has| operators
36+ functions --> |use| variables
37+ operators --> |work on| variables
38+ python_packages --> |allow| graphics
39+ python_packages --> |allow to use| user_input
40+ python_packages --> |allow to do| file_io
41+ python_packages --> |allow to use| command_line_arguments
42+ ```
4343
4444
4545In these sessions, we use the book
0 commit comments