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