Warning: this is an htmlized version!
The original is here, and
the conversion rules are here.
# This file:
#   http://anggtwu.net/PYTHON/elpytest1.py.html
#   http://anggtwu.net/PYTHON/elpytest1.py
#          (find-angg "PYTHON/elpytest1.py")
# Author: Eduardo Ochs <eduardoochs@gmail.com>
#
# (defun e () (interactive) (find-angg "PYTHON/elpytest1.py"))
# (find-angg "elisp/2025-serghei-1.el")

# (find-es "python" "emacs-as-a")
# (find-efunctiondescr 'describe-repeat-maps)
# (find-efunction 'describe-repeat-maps)
# (describe-repeat-maps)
# (find-elocus-links "M-," 'global-map "xref-go-back")
# (find-elocus-links "M-." 'global-map "xref-find-definitions")
# (find-elocus-links "M-?" 'global-map "xref-find-references")
# M-x eglot RET pylsp RET
# M-x company-mode
# (find-my-mode-links)
# (define-key my-mode-map (kbd "M-,") nil)


a = [66, 22, 33]

print(22)

for w in a:
    print(w)
    if w > 66:
        print(w * w)

a.pop()



"""
* (eepitch-python)
* (eepitch-kill)
* (eepitch-python)
exec(open("elpytest1.py").read(), globals())

# (find-evardescr 'eglot-server-programs)

(eglot nil nil nil '("pylsp") nil)

   (let ((current-server (eglot-current-server)))
     (unless (or (null current-server)
                 (y-or-n-p "\
[eglot] Shut down current connection before attempting new one?"))
       (user-error "[eglot] Connection attempt aborted by user"))
     (prog1 (append (eglot--guess-contact t) '(t))
       (when current-server (ignore-errors (eglot-shutdown current-server)))))

((python-mode python-ts-mode) (transient . "/home/edrx/PYTHON/") eglot-lsp-server ("pylsp") ("python" "python") t)


"""