> Doyley, Marvin M. writes:
> 
> I get an error

I get a reproduction of your error outside of Emacs and Org Mode.

Adapting an example from the list’s archive, the following works.

#+BEGIN_SRC elisp :results none
  (org-babel-do-load-languages
   'org-babel-load-languages
   '((python . t)))
#+END_SRC

#+BEGIN_SRC python :results output
  a = 5
  b = 16
  print(a + b)

#+END_SRC

#+RESULTS:
: 21


Reply via email to