I am trying to make some Python 3.6 code work in a Python 2.65 environment. I've made most of the corrections but I cannot import module xlwt
. It imports xlrd
just fine. I tried openpyxl
but that was not available either. Does Python 2.65 come with any standard module that will write to a spreadsheet?
Asked
Active
Viewed 28 times
-2

gwydion93
- 1,681
- 3
- 28
- 59
-
Please explain why this is considered off topic. If necessary, I will withdraw the question. – gwydion93 Oct 28 '18 at 19:57
1 Answers
1
No, there is no standard module to communicate with Excel or any spreadsheet app. The only standard module is csv
. The rest is 3rd party.

Matthieu Brucher
- 21,634
- 7
- 38
- 62