+ 8
Pls, can some1 help me here? using python to write a function that takes any number of argument (*args)
the main aim of de func is to subtract the argument(integers) entered. I did mine and it's bulky 😥
5 Respuestas
+ 4
like, could you write the whole stuff
+ 3
def func(*args):
return #whatever stuff you want.
Note: Don't do return *args it causes an error do return args
+ 3
@Justine:
Can you copy/paste your code, or post a link with the code you're working on? So we can give you advice in a better way..