mini.py 178 B

123456789
  1. #!/usr/bin/env python
  2. # -*- coding: windows-1251 -*-
  3. # Copyright (C) 2005 Kiseliov Roman
  4. from xlwt import *
  5. w = Workbook()
  6. ws = w.add_sheet('xlwt was here')
  7. w.save('mini.xls')