晨曦丶寒 发表于 2018-1-23 11:45:23

看看

杰jie 发表于 2018-1-24 15:45:47

我要看我要看

ln123123 发表于 2018-1-26 16:05:05

求看

sealint 发表于 2018-1-29 09:06:15

:lol

我望歌舞 发表于 2018-1-30 09:54:16

感谢分享

舌战群乳123 发表于 2018-1-31 21:28:30

1233

zhangling2018 发表于 2018-2-1 10:21:39

666

swallow0812 发表于 2018-2-1 16:20:45

看看

xiaoqiangzq 发表于 2018-2-2 09:12:00

谢谢楼主分享!

jiangfujun 发表于 2018-2-2 09:43:32

12467890-

amydedeng556677 发表于 2018-2-2 11:20:50

很好的东东

loumou 发表于 2018-2-6 09:32:33

哈哈 +1赞

wangruixia2017 发表于 2018-2-6 14:03:29

谢谢

974267518 发表于 2018-2-6 16:58:16

回复即可查看?

andykobewu 发表于 2018-2-6 18:28:03

实打实的啊

maomaosj3 发表于 2018-2-8 13:08:29

motoyou 发表于 2018-2-8 13:48:55

厉害

神奇航海士 发表于 2018-2-8 17:03:29

python+selenium读取/写入excel数据方法

神奇航海士 发表于 2018-2-8 17:15:41

#!/usr/bin/env python
#_*_coding:utf-8_*_
'''
for i in range(1,10):
      for j in range(1,i+1):
                print('%s*%s=%s'%(j,i,j*i),end=' ')
      print('\t')      
'''
import xlrd,xlwt
#读取excel数据
def a():
      book=xlrd.open_workbook("D:\\wangli.xlsx")#打开excel
      sheet=book.sheet_by_index(0)#获取当前页签
      nrows=sheet.nrows#总行数
      ncols=sheet.ncols#总列数
      row_data=sheet.row_values(0)#读取第一行数据,列表形式展现
      col_data=sheet.col_values(1)#读取第二列数据,列表形式展现
      cell_data=sheet.cell_value(1,1)#读取单元格数据
      cell_data1=sheet.cell(0,0)#读取单元格数据和类型
      #读取整个excel数据
      for i in range(0,nrows):
                for j in range(0,ncols):
                        cell_data2=sheet.cell_value(i,j)
                        print(cell_data2)
#写入excel数据
book=xlwt.Workbook(encoding='utf-8')
sheet=book.add_sheet('wangli1',cell_overwrite_ok=True)#可重新写入
sheet.write(0,0,'test1')#写入数据
sheet.write(0,1,'哈哈')
sheet.write(0,2,'521')
book.save('D:\\wangli1.xls')#保存excel

stone_test8993 发表于 2018-2-11 14:24:33

zan
页: 6 7 8 9 10 11 12 13 14 15 [16] 17 18 19 20 21 22 23 24 25
查看完整版本: 【精华分享】python+selenium读取/写入excel数据方法