Created
January 12, 2022 19:59
-
-
Save vinimonteiro/97de31ec026e1504cfde679162b515cd to your computer and use it in GitHub Desktop.
export_csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
data = [ | |
["01/03/2021", 30, 15, 45, 30], | |
["03/03/2021", 41, 10, 51, 40], | |
["05/03/2021", 50, 23, 73, 63], | |
["07/03/2021", 70, 30, 100, 80] | |
] | |
df = pd.DataFrame(data, columns = ['TRAINING_DAY', 'SHOTS_MADE', 'SHOTS_MISSED', 'TOTAL', 'TRAINING_DURATION (MINs)']) | |
print(df) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment