https://drive.google.com/file/d/16vfdBBzpx0Lua0ZmTdDkJXR5TS4w_u8e/view?usp=sharing
import pandas as pd
# Direct download URL for the Google Drive file
url = "https://drive.google.com/uc?id=16vfdBBzpx0Lua0ZmTdDkJXR5TS4w_u8e"
# Load the CSV file directly into a DataFrame
df = pd.read_csv(url)
# Display the DataFrame
print(df.head())