function with parameters in python code example
Example 1: python functions
# first we have to write 'def'
# then our function name followed by ()
# and a ':' abd defining block of code
def multiply(): # naming convention could be same as variable for functions
product = 10.5 * 4
return product
product = multiply()
print(product)
Example 2: python functions
def function():
print('This is a basic function')
function()
def add(numA, numB):
print(numA+numB)
add(1,2)
def define(value):
return value
example = define('Lorem ipsum')
print(example)
Example 3: how to call a function in python
def func():
print(" to write statement here and call by a function ")
func()