7 lines
No EOL
152 B
Python
Executable file
7 lines
No EOL
152 B
Python
Executable file
def Division(a,b) :
|
|
if b == 0:
|
|
print("La division par 0 est impossible !")
|
|
s = 0
|
|
elif b != 0:
|
|
s = a/b
|
|
return s |