pytutorial/flow/overview
David Rotermund 26197f31e6
Update README.md
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
2023-12-12 15:20:11 +01:00
..
README.md Update README.md 2023-12-12 15:20:11 +01:00

Terminal

Beginning of a program or function

{% raw %}

    flowchart LR
      id1:::terminal([Start])
      classDef terminal fill:#0f0,stroke:#000
  

{% endraw %}

Ending of a program or function

{% raw %}

    flowchart LR
      id1([Stop])
  

{% endraw %}

Process

For arithmetic operations and data-manipulations.

{% raw %}

    flowchart LR
      id1(Process)
  

{% endraw %}

Decision

{% raw %}

    flowchart LR
      id1{Decision}
  

{% endraw %}

Input/Output

{% raw %}

    flowchart LR
      id1[/Input/]
  

{% endraw %}

Function

{% raw %}

    flowchart LR
      id1[[Function]]
  

{% endraw %}

Initialization

{% raw %}

    flowchart LR
      id1{{Initialization}}
  

{% endraw %}

File

{% raw %}

    flowchart LR
      id1[(File)]
  

{% endraw %}