← All examples GCD (recursion) Python Recursion Euclid recursion Flowchart (ISO 5807) Flowchart Structogram YesNoStartInput a, bb == 0Return aEndReturn gcd(b, a % b)EndFigure 1 — gcd Source code def gcd(a, b): if b == 0: return a return gcd(b, a % b) Open in the editor Next All flowcharts for Python All example flowcharts How to make a flowchart from code Flowchart to the standard: full guide Flowchart for coursework Nassi-Shneiderman structograms