import openpyxl
from openpyxl.cell import get_column_letter,column_index_from_string
number=[9,12,15,22,5,25,15,21]
a=[]
for i in number:
a.append(get_column_letter(i))
a.insert(1,’ ‘)
a.insert(6,’ ‘)
b=’’
for i in a:
b=b+i
print b
用openpyxl告白:)

相关文章:

  • 2022-12-23
  • 2021-08-13
  • 2021-06-01
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-24
  • 2022-12-23
  • 2022-12-23
  • 2022-01-10
  • 2021-12-28
相关资源
相似解决方案