Question: in python Design a Pandas program to join the two given data frames along rows and assign all data Sample Input: (Each data frame has

in python
Design a Pandas program to join the two given data frames along rows and assign all data Sample Input: (Each data frame has student Name and Marks as columns) Arushi, Arun, Vidhi, Rivina, John #Dataframe1 student names separated by commas 23,45,67,90,96 #Dataframe1 student marks separated by commas Taylor, Swift, Ariana, Grande, Bieber #Dataframe2 names 12,99,89,34,22 #Dataframe2 marks Sample Output - (merging two data-frames) name marks 0 Arushi 23 1 Arun 45 2 Vidhi 67 3 Rivina 90 4 John 96 0 Taylor 12 1 Swift 99 2 Ariana 89 3 Grande 34 4 Bieber 22
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
