본문 바로가기
나를 위한 코드

xls 파일 읽기

by 라나나 2023. 8. 16.
728x90
import pandas as pd

# Replace 'your_file.xls' with the actual file name
file_path = 'your_file.xls'

# Read the Excel file into a DataFrame
df = pd.read_excel(file_path)

# Print the DataFrame to see the data
print(df)
728x90

'나를 위한 코드' 카테고리의 다른 글

css 선택자  (0) 2023.08.16
셀레니움 selectbox 제어  (0) 2023.08.16
iframe  (0) 2023.08.13
새 탭 열기, 제어  (0) 2023.07.20
datetime strftime  (0) 2023.05.10

댓글