+ 7
Is it possible to explain a python program with help of a flow chart . If so how ?
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.
+ 1
take a look at unreal engine blueprint programming