Advertisement
Guest User

Untitled

a guest
Dec 17th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1. import pandas as pd
  2. import time
  3. df_your = pd.read_excel('eais.xlsx', sep = ';')
  4. a = df_your['Дата/Время продажи']
  5. b = df_your['Дата/Время сеанса']
  6. for x in df_your:
  7.     if df_your['Дата/Время продажи'] - df_your['Дата/Время сеанса']:
  8.         print(df_your)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement