calling a method in python code example
Example: how to call a function in python
def func():
print(" to write statement here and call by a function ")
func()
// Returns
def func():
print(" to write statement here and call by a function ")
func()
// Returns