-2

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?

gwydion93
  • 1,681
  • 3
  • 28
  • 59

1 Answers1

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