python 處理試算表(前編)

來源:互聯網
上載者:User

標籤:python   電子   import   

import xlrd

input_ip = raw_input("請輸入一個ip:")

input_count_values = int(raw_input("請輸入-1 or +1 :"))



data = xlrd.open_workbook(‘d:\\1.xls‘)

table_Sheet1 = data.sheet_by_name(u‘Sheet1‘)

Sheet1_nrows = table_Sheet1.nrows

Sheet1_ncols = table_Sheet1.ncols

#print type(table_Sheet1.row_values(0))

#print type(table_Sheet1.cell(0,0).value)

x = 0

for y in range(Sheet1_nrows):

    if input_ip in table_Sheet1.cell(y,0).value:

        print "FIND"

        ip_y = y

        print table_Sheet1.row_values(ip_y)

        if table_Sheet1.row_values(ip_y)[-1] > 0 or input_count_values == +1:

            table_Sheet1_updata_row_values = table_Sheet1.row_values(ip_y)[:]

            table_Sheet1_updata_row_values[-1] = table_Sheet1_updata_row_values[-1] + input_count_values

            print  table_Sheet1_updata_row_values[-1]

        else:

            print "last_values=0 cannot -1" 

        break


python 處理試算表(前編)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.