Applications of Argument Syntax
Drag and drop the options to the blanks to complete the program to
perform a task using extended argument syntax.
Make a function that tells us about a person and his expenses.
Take his name as a compulsory argument, his expenses as a list of
arbitrary arguments and his information as arbitrary keyword
arguments. The function should print the name of the person, the
sum of his expenses, and the information about him.
Sample input
information('Adyansh',1,2,contact='123456')
Output
Your name is Adyansh
Your expenses are 3
Your contact number is 123456