Code: def some_func(a=7, b=6, c=1): print('a is', a, 'and b is', b, 'and c is', c) some_func(4, 7) some_func(5, c = 9) some_func(b = 200, a = 100) Comments Log in or register to post comments
Comments