Python 匿名函数 Python 可变参数 Python return 语句 Python 匿名函数 #!/usr/bin/python # Function definition is here sum = lambda arg1, arg2: arg1 + arg2; # Now you can call sum as a function print "Value of total : ", sum( 10, 20 ) print "Value of total : ", sum( 20, 20 ) Python 可变参数 Python return 语句