9 lines
143 B
Python
9 lines
143 B
Python
#!/usr/bin/python3
|
|
|
|
import math
|
|
|
|
rayon = float(input("Entrez le rayon : "))
|
|
perimetre = 2 * math.pi * rayon
|
|
|
|
print("périmètre :", perimetre)
|