I am new to python programming, please assist me.
I don't want to overwrite the Admin but it is forcing me to do that.
def funk(Admin="subhanshu",*users,**additional):
print("Admin is", Admin)
print("users are", users)
print("additional are", additional)
When I run the function, it is throwing an error.
funk(pass,'arun',"abcd",name='prakhar',age=23)
invalid syntex
Please help me how to call a function without over-riding the value of Admin in the function.