Quick actions

cmd+k|ctrl+k

Navigation

Languages

*args and **kwargs 2

Snippet info

Language

Python

Visibility

public

Author

fpuleano

Created

2022-03-09T16:57:34.734401Z

Updated

2022-03-09T17:08:55.680562Z

# args **kwargs

def super_funct(*args):
    print(args)
    return sum(args)
    
print(super_funct(1,2,3,4,5))
INFO