From ddd8a20949274411ee215ce46999639ecfb84b98 Mon Sep 17 00:00:00 2001 From: Tomasz Polgrabia Date: Thu, 6 Mar 2025 19:34:45 +0100 Subject: [PATCH] Testing python lsp. --- current/algorithms/python/app.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 current/algorithms/python/app.py diff --git a/current/algorithms/python/app.py b/current/algorithms/python/app.py new file mode 100644 index 0000000..bdf0aa8 --- /dev/null +++ b/current/algorithms/python/app.py @@ -0,0 +1,7 @@ +x = [1, 2, 3, 4] +y = [2*el+1 for el in x] + +for el in y: + print("El {}".format(el)) + +print("Done")