Created
May 31, 2019 05:50
-
-
Save shubham-singh-ss/ee58ee2048901088e7200c4548a8d2eb to your computer and use it in GitHub Desktop.
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_link = pd.DataFrame(columns = ["link"]) | |
df_title = pd.DataFrame(columns = ["title"]) | |
df_description = pd.DataFrame(columns = ["description"]) | |
df_category = pd.DataFrame(columns = ["category"]) | |
df_link[‘link’] = df_copy['link'] | |
df_title [‘title’]= df_copy['title'] | |
df_description[‘description’] = df_copy['description'] | |
df_category[‘category’] = df_copy['category'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment