#!/usr/bin/python

import pandas as pd
import collections

df_dict = pd.read_excel('c:\data\machines.xlsx', sheet_name=None, index_col=None, na_values=['NA'])

df_dict = collections.OrderedDict(sorted(df_dict.items()))

df = pd.concat(df_dict.values(), ignore_index=True)

print(type(df))

print(df[df['ip'].str.contains('192.168.10.')])

 

相关文章:

  • 2022-12-23
  • 2022-01-14
  • 2021-12-09
  • 2022-01-20
  • 2022-12-23
  • 2021-11-26
猜你喜欢
  • 2022-12-23
  • 2021-12-28
  • 2022-12-23
  • 2021-11-20
  • 2021-05-20
  • 2021-12-04
相关资源
相似解决方案