From 15115b4c52bfda0d1cca9fa1155beecbb873ec35 Mon Sep 17 00:00:00 2001 From: yctct Date: Sun, 7 Jun 2026 08:59:04 +0200 Subject: First commit, add all files --- py00/ex2/ft_plot_area.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 py00/ex2/ft_plot_area.py (limited to 'py00/ex2/ft_plot_area.py') diff --git a/py00/ex2/ft_plot_area.py b/py00/ex2/ft_plot_area.py new file mode 100644 index 0000000..1ea6d1a --- /dev/null +++ b/py00/ex2/ft_plot_area.py @@ -0,0 +1,6 @@ +def ft_plot_area(): + length = input("Enter length: ") + length = int(length) + width = input("Enter width: ") + width = int(width) + print("Plot area: ", length * width) -- cgit v1.2.3