ggt euklidischer algorithmus python code example Example: ggt euklidischer algorithmus python def ggt(a, b): while b!=0: a, b = b, a%b return a