1

我正在尝试为 excel 文件创建搜索方法,如果找到该单词,则程序应打印整行并且代码为

from xlrd3 import open_workbook,cellname,empty_cell,XL_CELL_TEXT,error_text_from_code, cellnameabs, colname
book= open_workbook('s1.xls')
sheet=book.sheet_by_index(0)


def search():
    s=[]
    a=str(input("Enter Search : "))
    x= [a]
    for row in range(sheet.nrows):
        for col in range(sheet.ncols):
            s.append(str(sheet.cell(row,col).value))
            if x == s:
                for col in range(sheet.ncols):
                    s=[]
                    s.append(int((sheet.cell(row,col).value)))
                    print (s)
                    s=[]
            elif x != s:
                s=[]
    search()

search()

我有一个问题,当涉及到数字时,它被打印为像 10301.0 这样的浮点数,我希望用户搜索确切的数字 10301 并显示为 10301

请问有什么建议吗?谢谢

4

0 回答 0