piscine 00

This commit is contained in:
David Gailleton
2025-12-18 15:39:15 +01:00
parent 029903f8dd
commit 01854a4fb7
9 changed files with 62 additions and 0 deletions

6
00/ex1/ft_plot_area.py Normal file
View File

@@ -0,0 +1,6 @@
def ft_plot_area():
print("Enter length:", end=" ")
len = int(input())
print("Enter width:", end=" ")
width = int(input())
print("Plot area: ", len * width)