5 lines
169 B
Python
Executable File
5 lines
169 B
Python
Executable File
#!/usr/bin/python3
|
|
rayon=float(input("Entrez le rayon du cercle en cm : "));
|
|
perimetre=float(2*rayon*3.141592);
|
|
print("le perimètre du cercle est :", perimetre, "cm");
|