exo-python

This commit is contained in:
root 2024-10-03 10:27:50 +02:00
parent 0f6de50a66
commit d38ba48387

View File

@ -0,0 +1,10 @@
#!/usr/bin/python3
# Demander le rayon du cercle à l'utilisateur
rayon = float(input("Entrez le rayon du cercle : "))
# Calculer le périmètre
perimetre = 2 * 3.141592 * rayon
# Afficher le périmètre
print("Le périmètre vaut :", perimetre)