Create main.py

This commit is contained in:
PeterGuek 2024-07-19 20:30:43 -07:00 committed by GitHub
parent 35f2dd95f0
commit 17a99a3803
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

6
Exercice6/main.py Normal file
View File

@ -0,0 +1,6 @@
# Fonction calculate_average
# Exemple d'utilisation de la fonction
numbers = [10, 20, 30, 40, 50]
average = calculate_average(numbers)
print("La moyenne est :", average)