Ajout du tp de python et regex

This commit is contained in:
2025-11-14 14:17:17 +01:00
parent 522b01ef35
commit b3721a511b
5 changed files with 75 additions and 0 deletions

View File

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