CBSE Class 12 Informatics Practices
Question 27 of 101
Python Pandas — II — Question 3
Back to all questionsadd, radd
Reason — We can add two DataFrame objects using either (+) operator or using add() function as per syntax : <DF1>.add(<DF2>) which means <DF1>+<DF2> or by using radd() function i.e., reverse add as per syntax : <DF1>.radd(<DF2>) which means <DF2>+<DF1>.