Learn practical skills, build real-world projects, and advance your career
import pandas as pd
import numpy as np

ipl_match = pd.read_excel("C:\\Users\\KARNDEEP SINGH\\Downloads\\IPL Data\\IPL Data\\Match.xlsx")

ipl_ball_by_ball = pd.read_excel("C:\\Users\\KARNDEEP SINGH\\Downloads\\IPL Data\\IPL Data\\Ball_by_Ball.xlsx")
ipl_player = pd.read_excel("C:\\Users\\KARNDEEP SINGH\\Downloads\\IPL Data\\IPL Data\\Player.xlsx")
ipl_player_match = pd.read_excel("C:\\Users\\KARNDEEP SINGH\\Downloads\\IPL Data\\IPL Data\\Player_Match.xlsx")
ipl_season = pd.read_excel("C:\\Users\\KARNDEEP SINGH\\Downloads\\IPL Data\\IPL Data\\Season.xlsx")