번호

python

python pandas를 이용한 csv 데이터 검색 프로그램

csv파일을 이용한 검색 프로그램 검색에서 불필요한 항목은 제거하고 보고싶은 내용만 정렬 후 검색 def search_phone_number(csv_path, search_value): df = pd.read_csv(csv_path, encoding='ANSI') columns_to_exclude = ['v_port', 'MAC addr', 'mode', 'attached UC phone', 'Detail Type'] search_result = df[df['Phone Number'].astype(str).str.contains(str(search_value))].drop(columns=columns_to_exclude) search_result = search_result.sort_values(by='..

p@ssw0rd
'번호' 태그의 글 목록