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)
  
 
