SyntaxFix
Write A Post
Hire A Developer
Questions
The simplest way add a row in a pandas data frame is:
DataFrame.loc[ location of insertion ]= list( )
Example :
DF.loc[ 9 ] = [ ´Pepe’ , 33, ´Japan’ ]
NB: the length of your list should match that of the data frame.