Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Execute Python-3 Online

def  testMethod(var1, *abc) :
    print(var1)
    
    for val in abc:
        print(val)
testMethod(10, 20, 30, 40, 50)


print("");
# Lambda
testLambda = lambda arg1, arg2 : arg2 - arg1;
print(testLambda(150,250));


Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.