In [ ]:
import numpy as np
import pandas as pd
'''
Input data files are available in the read-only "../input/" directory
For example, running this (by clicking run or pressing Shift+Enter)
will list all files under the input directory
'''
import os
for dirname, _, filenames in os.walk('/kaggle/input'):
for filename in filenames:
print(os.path.join(dirname, filename))
'''
# You can write up to 20GB to the current directory (/kaggle/working/)
that gets preserved as output when you create a version using "Save & Run All"
# You can also write temporary files to /kaggle/temp/, but they won't be saved outside of the current session
'''
/kaggle/input/us-accidents/US_Accidents_March23.csv
In [ ]: