# -*-coding:utf-8 -*-

import pandas as pd


xls_file=pd.ExcelFile('D:\python_pro\\address_list.xlsx')

table=xls_file.parse('Sheet1')

table



for i, row in table.iterrows():

if row['mobile']==13901079723:

print i,row





相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-22
  • 2021-07-26
  • 2022-12-23
猜你喜欢
  • 2021-07-11
  • 2022-12-23
  • 2021-06-16
  • 2021-08-24
  • 2021-11-28
  • 2021-06-03
  • 2022-12-23
相关资源
相似解决方案