11 lines
249 B
Python
11 lines
249 B
Python
#!/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)
|