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

Terminal

Beginning of a program or function

{% raw %}

    flowchart LR
      id1([Start])
  

{% 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 %}