What are keyword arguments?

 

Answer:

If there is a function with many parameters and we want to specify only a few from them, then this can be done by naming the arguments . These arguments are called keyword arguments. When using keyword arguments, the order in which they are specified does not matter.

Example:

def perimeter (b,l):

    p= 2 *(l+b)

    print(p)

 

perimeter(l=2,b=5)

 

 

Ask a doubt
Davneet Singh's photo - Co-founder, Teachoo

Made by

Davneet Singh

Davneet Singh has done his B.Tech from Indian Institute of Technology, Kanpur. He has been teaching from the past 14 years. He provides courses for Maths, Science, Social Science, Physics, Chemistry, Computer Science at Teachoo.