Jak napisać komórkę z wieloma kolumnami w xlwt?
Chciałbym napisać taką tabelę:
----------------
| Long Cell |
----------------
| 1 | 2 |
----------------
Jak napisać komórkęLong Cell
? Dzięki.
Próbowałem to zrobić w ten sposób:
sheet.write(0, 0, 'Long Cell')
sheet.write(1, 0, 1)
sheet.write(1, 1, 2)
Ale kończy się tak:
--------------------
| Long Cell | |
--------------------
| 1 | 2 |
--------------------