CIS192: Python Programming - Functional Programming

**kwargs A variable number of kwargs can be specifed Use **kwargs at the end I Could use any identifier but kwargs is conventional deffunc(arg1, *args, named=val, **kwargs) I kwargs is a dictionary of strings to values I The keys of kwargs are the names of the keyword args func(a, extra1=b, extra2=c) I arg1 = a, args =tuple() I named gets the ... ................
................