From a7c62467241392d11eff79289eab114165e0f7f7 Mon Sep 17 00:00:00 2001 From: robin Date: Sun, 22 Sep 2024 11:17:21 +0200 Subject: [PATCH] =?UTF-8?q?Dateien=20nach=20=E2=80=9E/=E2=80=9C=20hochlade?= =?UTF-8?q?n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- squares.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 squares.py diff --git a/squares.py b/squares.py new file mode 100644 index 0000000..b15a116 --- /dev/null +++ b/squares.py @@ -0,0 +1,8 @@ +len =input() +x =0 +len= int(len) +len = len+1 +while x < len: + p=x*x + print(p) + x=x+1 \ No newline at end of file