def Division(a,b) : if b == 0: print("La division par 0 est impossible !") s = 0 elif b != 0: s = a/b return s