From f2a5d63eacd2e8264914be76a10747162868cc63 Mon Sep 17 00:00:00 2001 From: Davide Grilli Date: Wed, 8 Apr 2026 09:31:04 +0200 Subject: [PATCH] aggiunge esercizio 7 --- lab07.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 lab07.py diff --git a/lab07.py b/lab07.py new file mode 100644 index 0000000..49ef8e5 --- /dev/null +++ b/lab07.py @@ -0,0 +1,7 @@ +x = -1 +x = float(x) + +y=3*x**3-2*x**2+3*x-1 + +print("y=", y) +