8 lines
154 B
Python
8 lines
154 B
Python
#!/usr/bin/python3
|
|
|
|
rayon=float(input("Donner le rayon du cercle : "))
|
|
|
|
perimetre=2 * 3.141592 * rayon
|
|
|
|
print("Le perimetre du cercle est de ",perimetre)
|