Python call function with argument

Different ways to call a function in Python [Examples]

Python is well known for its various built-in functions and a large number of modules. These functions make our program more readable and logical. We can access the features and functionality of a function by just calling it. In this tutorial, we will learn about how the python call function works. We will take various examples and learned how we can call python built-in functions and user-defined functions. Moreover, we will cover how to call a function with arguments and without arguments.

At the same time, we will also discuss about the data types of these arguments and their order as well. In a conclusion, this tutorial covers all the concepts and details that you need to start working with functions and calling functions.

Getting started with Python call function

Before starting and learning how to call a function let us see what is a python function and how to define it in python. So, a Python function is a group of codes that allows us to write blocks of code that perform specific tasks. A function can be executed as many times as a developer wants throughout their code. The def keyword is used to define and declare a function. See the syntax below;

def name_of_funtion(): function_statements

To run the code in a function, we must call the function. A function can be called from anywhere after the function is defined. In the following section, we will learn how we can call a function and how they return a value.

Syntax and example of the python call function

We already had learned how we can define a function, now let us see how we can call a function that we have defined. The following syntax is used to call a function.

# python call function name_of_function()

Now let us create a function that prints welcome and see how we can call it using the above syntax. See the following example.

# creating function def hello(): # printing welcome print("welcome to python call function tutorials!") # python call function hello()
welcome to python call function tutorials!

Calling python function with returned value

In the above example, notice that it did not return any value or expression, it just prints out the welcome statement. In python, we can return a value from a function as well by using the return keyword. First, let us take the same example and return the welcome statement this time, instead of printing it out. See the example below:

# creating function def hello(): # return welcome statement return "welcome to python call function tutorials!" # python call function print(hello())
welcome to python call function tutorials!

Now if we check the type of function’s return by using the python type method, we will get string type because this function returns a string value. See the example below:

# creating function def hello(): # return welcome statement return "welcome to python call function tutorials!" # python call function and type method print(type(hello()))

Note that the function type is a string. Now let us take one more example which returns the sum of two numbers. See the example below:

# creating function def Sum(): # return welcome statement return 2+7 # python call function print(Sum())

Now let us check the type of function by using the python type method. See the example below:

# creating function def Sum(): # return welcome statement return 2+7 # python call function and python type method print(type(Sum())

Notice that this time we got int type because our function returns an integer value. The type changes each time because we are finding the returned type of a function using the python type function and applying it on the python call function. If we find the type of function without calling it, we will get «type function». See the example below:

# creating function def Sum(): # return welcome statement return 2+7 # python call function and python type method print(type(Sum))

Calling python built-in functions

We know that python is well known for its various built-in functions. Some of these functions come with python and some with different modules. We can access the functionalities of these functions by calling the function. See the example below which call the sum function.

# python call function and built-in function print(sum([2, 3, 4]))

Notice that we didn’t define a function to return the sum of the given number, in fact, the sum is a Python built-in function that returns the sum of the given number. In a similar way, if want to access a function that is inside a module, we have to first import that module and then call the function. See the example below:

# importing math module import math # python call function and built-in function print(math.sqrt(9))

In this way, we can access other python built-in functions as well.

Читайте также:  Set with count java

Python call function with arguments

So far we have learned how we can call a function that does not takes any arguments, In this section, we will discuss different types of arguments that a function can take. A function can take single or multiple arguments depending on the definition of the function. The syntax of function with arguments looks like this:

# syntax of python call function with arguments def function_name(arg1, arg1, . agrn): function statements

And we can call the function by passing arguments. See the syntax below:

# python call function with arguments function_name(arg1, arg2, . argn)

Integer arguments in python call function

Not let us take the example of the python function that takes integers as an argument and returns the sum of all the arguments. See the example below:

# defining a function def main(arg1, arg2, arg3): # return the sum return arg1 + arg2 + arg3 # python call function print(main(1, 2, 3)

If we provide the number of arguments greater than or less than the defined ones, we will get an error. See the following example.

# defining a function def main(arg1, arg2, arg3): # return the sum return arg1 + arg2 + arg3 # python call function print(main(1, 2, 3, 3 , 4))

How to properly call a function in Python [With Examples]

String arguments in python call function

Now let us take the example of strings as an argument to python function. See the example which takes three strings as an argument and prints out them.

# defining a function def main(arg1, arg2, arg3): # printing print("Your first name is: <>".format(arg1)) print("your last name is :<>".format(arg2)) print("your shcool name is:<>".format(arg3)) # python call function main("Bashir", "Alam","UCA")M/code>
Your first name is: Bashir your last name is :Alam your shcool name is:UCA

The order of arguments is very important in python otherwise we might get unexpected output. See the example below where we place our first name in the last and school name in the beginning. See the example below:

# defining a function def main(arg1, arg2, arg3): # printing print("Your first name is: <>".format(arg1)) print("your last name is :<>".format(arg2)) print("your shcool name is:<>".format(arg3)) # python call function main("UCA", "Alam","Bashir")
Your first name is: UCA your last name is :Alam your shcool name is:Bashir

Notice that there is not any syntax error but the output is not logical, so the order of argument is very important in python.

Читайте также:  Javascript максимальное из двух

Calling a function in python loop

We can even call a function inside from a loop as well. The function will be called each time the loop executes and will stop calling once the loop finishes. In this section, we see how we call a function from a loop.

Python call function inside for loop

A Python for loop is used to loop through an iterable object (like a list, tuple, set, etc.) and perform the same action for each entry. We can call a function from inside of for loop. See the following example which demonstrates the working of the python call function from inside of for loop.

# defining a function def main(): print("calling function from for loop") # for loop for i in range(5): # python function call from for loop main()
calling function from for loop calling function from for loop calling function from for loop calling function from for loop calling function from for loop

Notice that the function was called each time the statement inside for loop executes.

Python call function inside while loop

A Python while Loop is used to execute a block of statements repeatedly until a given condition is satisfied. And when the condition becomes false, the line immediately after the loop in the program is executed. We can be called from a while loop and can be executed each time unless the loop terminates. See the example below:

# defining a function def main(): print("calling function from while loop") num = 0https://www.golinuxcloud.com/wp-admin/admin.php?page=eos_dp_by_post_type # while loop while num
calling function from while loop calling function from while loop calling function from while loop calling function from while loop calling function from while loop

Note the once the condition becomes false, the while loop terminates.

Python call function from inside function itself

Python also accepts function recursion, which means a defined function can call itself. Recursion is a common mathematical and programming concept. It means that a function calls itself. This has the benefit of meaning that we can loop through data to reach a result. Once the condition becomes false, it will stop calling a function, other wise it will continue to infinity. Let us now take an example of the python call function from the inside function itself. See the example below:

# defining function def main(num): # printing print("calling function") # if condition if num>0: # python calling function itself main(num-1) else: pass # python call function main(5)
calling function calling function calling function calling function calling function calling function

Notice that the function is called five times from inside itself and once the condition becomes false, it stops calling.

Summary

Python function is a group of codes that perform a specific task. To get the functionality and features of function, we have to call it. In this tutorial, we learned about the python call function. We learned how we can call built-in function and user-defined function. At the same time, we come across passing and call functions with multiple arguments with different data types. Furthermore, we also came across example and learned how the calling a function from python loops work. In a nutshell, in this tutorial, we learned everything that we need to learn about the python call function.

Further Reading

Didn't find what you were looking for? Perform a quick search across GoLinuxCloud

If my articles on GoLinuxCloud has helped you, kindly consider buying me a coffee as a token of appreciation.

Buy GoLinuxCloud a Coffee

For any other feedbacks or questions you can either use the comments section or contact me form.

Thank You for your support!!

Leave a Comment Cancel reply

Python Tutorial

  • Python Multiline Comments
  • Python Line Continuation
  • Python Data Types
    • Python Numbers
    • Python List
    • Python Tuple
    • Python Set
    • Python Dictionary
    • Python Nested Dictionary
    • Python List Comprehension
    • Python List vs Set vs Tuple vs Dictionary
    • Python if else
    • Python for loop
    • Python while loop
    • Python try except
    • Python try catch
    • Python switch case
    • Python Ternary Operator
    • Python pass statement
    • Python break statement
    • Python continue statement
    • Python pass Vs break Vs continue statement
    • Python function
    • Python call function
    • Python argparse
    • Python *args and **kwargs
    • Python lambda function
    • Python Anonymous Function
    • Python optional arguments
    • Python return multiple values
    • Python print variable
    • Python global variable
    • Python copy
    • Python counter
    • Python datetime
    • Python logging
    • Python requests
    • Python struct
    • Python subprocess
    • Python pwd
    • Python UUID
    • Python read CSV
    • Python write to file
    • Python delete file
    • Python any() function
    • Python casefold() function
    • Python ceil() function
    • Python enumerate() function
    • Python filter() function
    • Python floor() function
    • Python len() function
    • Python input() function
    • Python map() function
    • Python pop() function
    • Python pow() function
    • Python range() function
    • Python reversed() function
    • Python round() function
    • Python sort() function
    • Python strip() function
    • Python super() function
    • Python zip function
    • Python class method
    • Python os.path.join() method
    • Python set.add() method
    • Python set.intersection() method
    • Python set.difference() method
    • Python string.startswith() method
    • Python static method
    • Python writelines() method
    • Python exit() method
    • Python list.extend() method
    • Python append() vs extend() in list
    • Create your first Python Web App
    • Flask Templates with Jinja2
    • Flask with Gunicorn and Nginx
    • Flask SQLAlchemy

    Источник

Оцените статью