pytutorial/flow/overview/README.md

82 lines
1,019 B
Markdown
Raw Normal View History

## Terminal
### Beginning of a program or function
{% raw %}
<pre class="mermaid">
flowchart LR
id1:::terminal([Start])
</pre>
{% endraw %}
### Ending of a program or function
{% raw %}
<pre class="mermaid">
flowchart LR
id1([Stop])
</pre>
{% endraw %}
## Process
For arithmetic operations and data-manipulations.
{% raw %}
<pre class="mermaid">
flowchart LR
id1(Process)
</pre>
{% endraw %}
## Decision
{% raw %}
<pre class="mermaid">
flowchart LR
id1{Decision}
</pre>
{% endraw %}
## Input/Output
{% raw %}
<pre class="mermaid">
flowchart LR
id1[/Input/]
</pre>
{% endraw %}
## Function
{% raw %}
<pre class="mermaid">
flowchart LR
id1[[Function]]
</pre>
{% endraw %}
## Initialization
{% raw %}
<pre class="mermaid">
flowchart LR
id1{{Initialization}}
</pre>
{% endraw %}
## File
{% raw %}
<pre class="mermaid">
flowchart LR
id1[(File)]
</pre>
{% endraw %}