how to add a row dataframe pandas code example

Example 1: add rows to dataframe pandas

df = df.append({'a':1, 'b':2}, ignore_index=True)

Example 2: append one row to pandas dataframe

df = df.append({'index1': value1, 'index2':value2,...}, ignore_index=True)

Example 3: pandas insert row

df.loc[-1] = [2, 3, 4]  # adding a row
 df.index = df.index + 1  # shifting index
 df = df.sort_index()  # sorting by index

Example 4: add new row to dataframe pandas

# Add a new row at index k with values provided in list
dfObj.loc['k'] = ['Smriti', 26, 'Bangalore', 'India']