df2 = pd.DataFrame({'First Name': ['Kumar'], 'Last Name' : ['Ram'], 'Country' : ['India']}) df = pd.concat([df, df2], ignore_index = True, axis = 0) df