Is it possible to explain a python program with help of a flow chart . If so how ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 7

Is it possible to explain a python program with help of a flow chart . If so how ?

15th Sep 2016, 4:12 AM
Athul Joy
Athul Joy - avatar
2 Answers
+ 4
Flowcharts are made for formalizing algorithms in visual form. As programming languages (Python respectively) are about formalizing algorithms in text form, definitely there is the way to translate from one to another. How? Write flowcharts for Python functions which depend only on system tools, but not other user functions. Let's call it level '1'. Than flowcharts for functions based only on '1', and call them level '2'. Complete level '3' with ones which use only '1' and '2', and so on. Finally you will have the number of flowcharts which composition will give you an equivalent of Python program.
15th Sep 2016, 5:10 AM
Textobot
Textobot - avatar
+ 1
take a look at unreal engine blueprint programming
16th Sep 2016, 12:53 PM
Dalibor Djuric
Dalibor Djuric - avatar