Created
August 18, 2018 23:40
-
-
Save StrikingLoo/6385336f5de043f921bbb0f990f39bd5 to your computer and use it in GitHub Desktop.
make a pd dataframe and 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
df = pd.DataFrame(generate_people(50), | |
columns=["name","surname","salary"]) | |
df.to_csv("random_people.csv") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment