# Manipulando arquivos de Excell import pandas as pd from time import sleep arquivo = 'Chatbots-Controle.xlsx' aba = 'Em andamento' header = 0 file = pd.read_excel(arquivo, sheet_name=aba, header=header) #print(file['PROJETO']) cod = int(input('Código do Projeto: ')) for c in range(0, len(file)): #print(file['CLIENTE'][c]) if file['PROJETO'][c] == cod: print(f'Cliente: {file["CLIENTE"][c]}')