ph3n4t3s
Results
1
issues of
ph3n4t3s
### Page https://apprendre.modulo-info.ch/content/appr/theme/prog1/cours/7_fonc/fonc.html ### Quel est le problème relevé ? def pythagore(a, b): print(pythagore(3, 4)) ### Quelle est votre suggestion ? def pythagore(a, b): return ((a**2+b**2)**(1/2)) print(pythagore(3, 4)) ### Code...
contenu