Quick actions

cmd+k|ctrl+k

Navigation

Languages

argument

Snippet info

Language

Python

Visibility

public

Author

chausage

Created

2024-12-06T07:32:57.666504Z

Updated

2024-12-06T07:32:57.666504Z

def a(x,y,*arg):
    print("Hello World!", x,y,arg)
    def b(h,i): #inner function 
        print(h,i)
    b(arg[0], arg[1]) #using remaining arg. 
a(1,2,3,4,5,6)
INFO