# Cách import file vào Google colab

from google.colab import files
uploaded = files.upload()

After run, colab will show input to select file. And you can select multiple files.

import io

df = pd.read_csv(io.BytesIO(uploaded['Filename.csv']))

# Dataset is now stored in a Pandas Dataframe