我在emacs組織模式下有python源代碼。我只想將python代碼的輸出導出到ODT而不是源代碼。我怎麼能這樣做?如何從emacs org-mode只將python輸出非源代碼導出到ODT?
這是我的測試代碼。當我進行導出時,只有我的ODT文件中的源代碼。
#+BEGIN_SRC python :results output :export result
import pprint
test_dict = {
'a':1,
'b':2,
'c':3,
"nested": {
"n_a":1,
"n_b":2,
"n_c":3
}
}
pprint.pprint(test_dict, indent=2, width=1)
#+END_SRC
#+RESULTS:
: { 'a': 1,
: 'b': 2,
: 'c': 3,
: 'nested': { 'n_a': 1,
: 'n_b': 2,
: 'n_c': 3}}
Sweet,Python,emacs,orgmode,你太棒了! –
@AaronHall那些工具很棒。 – enchanter