call in python code example
Example 1: how to define function in python
def example():
print("Example.")
example()
Example 2: how to make a function in python
def test_function(argument1,argument2,argument3) :
print(argument1)
print(argument2)
print(argument3)
test_function('Hello','World','!')
'''
Hello
World
!
'''
Example 3: how to add a fuction in python
def new_function():
print("Function is here!")
new_function()
Example 4: how to call a function in python
def func():
print(" to write statement here and call by a function ")
func()
// Returns
Example 5: how to make a function in python
def your_function(arg1, arg2, arg3):
do_something
do_something_else
your_function(something, something, something)
Example 6: how to get calling function in python
def Square(X):
return (X * X)
def SumofSquares(Array, n):
Sum = 0
for i in range(n):
SquaredValue = Square(Array[i])
Sum += SquaredValue
return Sum
Array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
n = len(Array)
Total = SumofSquares(Array, n)
print("Sum of the Square of List of Numbers:", Total)