CBSE Class 12 Informatics Practices
Question 30 of 101
Python Pandas — II — Question 6
Back to all questionsDF.div(DF1)
Reason — The div() function with the syntax <DF>.div(<DF1>), performs element-wise division between DF and DF1, which is equivalent to <DF>/<DF1> in terms of functionality and output.