Skip to content

Instantly share code, notes, and snippets.

@anderzzz
Created June 8, 2023 10:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anderzzz/ba2ca04ed4e52c140ba567ceec30dde8 to your computer and use it in GitHub Desktop.
Save anderzzz/ba2ca04ed4e52c140ba567ceec30dde8 to your computer and use it in GitHub Desktop.
import pandas as pd
# Read the file, skip the initial lines
data = pd.read_csv('your_file_path', delimiter=';', skiprows=37)
# Preview the extracted data
print(data.head())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment