Skip to main content

How to call a function in Python

Python function call

In the last post introducing Python, I demonstrated how to make a simple app using variables and conditional statements. In order to do anything really powerful in a given programming language though, you need to understand functions! In this post, we’ll discuss the Python function call.

What is a Python function call?

Before we look at how to call a function in Python, we first need to familiarize ourselves with the concept.

Also read: Best online Python courses

Functions are used throughout programming as a way to group certain tasks together. This becomes useful in a variety of circumstances, particularly when a repetitive task needs to be carried out multiple times.

Functions are used throughout programming as a way to group certain tasks together.

For example, if you built an app that drew hundreds of triangles on the screen to generate a kaleidoscopic effect, you could do this in one of two ways:

  • Without functions: by repeatedly writing the code to draw a triangle with.
  • With a Python function call: by generating lots of coordinates and feeding them to your “draw triangle” function.

The latter is far more efficient, requires less code, and is generally the preferred method. Not only that, but if you ever decide you want to draw squares instead of triangles; you could change just a few lines of code and the entire output would be different!

One more benefit of using functions is that they are modular and portable. If you write another program with a triangle in it, you can just copy and paste your triangle code wholesale!

Python call function example

Here is an extremely simple example of a Python function that will print “Hello World!” onto the screen:

def HelloPrint():

    print("Hello World!")

    return;

HelloPrint()

That is how to define a function in Python and call it!

The function here is called HelloPrint. First we “define” this function with the def statement, then we place any code we want to be a part of it directly beneath. The return statement simply instructs the interpreter to return to whatever point in the code it was at before it carried out the function.

Note that I’ve capitalized each word in my function name. This is a good practice as it helps to distinguish a Python function call from statements.

Now, any time we want to say “Hello World!” we can simple write HelloPrint() and it will happen!

For example:

def HelloPrint():

    print("Hello World!")

    return;

HelloPrint()

HelloPrint()

Run this code and you’ll now see the “Hello World!” message appear twice!

Because this code is grouped separately, it won’t run until you use the Python function call. That also means that this code will do the precise same thing:

def HelloPrint():

    print("Hello World!")

    return;

HelloPrint()

HelloPrint()

This also means you should be able to figure out how to call a function from another function:

def GreetingsPrint():

    print("Hello World!")

    NiceDayToday()

    return;

def NiceDayToday():

    print(“Nice day today, isn’t it!”)

    return;

GreetingsPrint()

And that, in a nutshell, is how to call a function in Python! But we still haven’t tapped into the real power of Python functions yet!

How to pass information to a Python function call

While functions are useful for performing repetitive tasks, their real power lies in the ability to give and receive data. This is what those little brackets are for: they allow us to call a function in Python while also passing in data.

For example, the following code will say “Hello Adam”:

def SayHello(Name):

    print(“Hello ” + Name)

    return;

SayHello(“Adam”)

This is means that the same function can perform slightly different actions depending on the variables we give it.

How to manipulate data

Even more useful though, is the ability of a function to transform data.

To do this, we need to pass information into the function, perform an action, and then return that information.

Here’s one way that we might perform this with a Python functional call:

def Multiplier(Number):

    return = Number * 10;

print(Multiplier(5))

Here, the output will be “50” because the number 5 is passed with the Python function call, which returns that value multiplied by 10. Notice how we can write the Python function call just as though it were the name of an integer itself. This allows for very rapid and flexible coding!

There are countless ways we can use this feature. Here is another little example that requires just three lines of code:

def Counter(Name):

    return len(Name);

NamePlease = input("Name length counter! Enter your full name ")

print(Counter(NamePlease))

This little app is a “name length counter.” This uses the len statement from Python, which returns an integer based on the length of a string. So, this fun app can tell you how many characters are in your name!

That’s including spaces but hey, no one is perfect.

Now you know how to use a Python function call! This opens up a world of possibilities, but don’t stop there!



source https://www.androidauthority.com/python-function-call-1121793/

Comments

Popular posts from this blog

4 Surprising Ways Artificial Intelligence will Empower Consumers

Ever wonder what makes Siri search the items inside the iPhone and on the web by recognizing your voice? How does Google listening work? Artificial Intelligence and data science have already infused in this consumer-oriented generation, but we have not realized it yet. It has been quite a while that natural language processing, speech recognition, and gesture recognition system took over the market with their all new features, but what are the new things in AI that are yet to come? Few amazing transformations are: Retailing sector to become AI-ready Voice Recognition will change the game Search engines to become smarter Machine learning to bring revolutionary changes Recently we got to learn about a verbal spat between Elon Musk and Mark Zuckerberg over the probable risk and opportunities brought by AI . Believe it or not, but we already accustomed to Artificial Intelligence and probably waiting to witness jaw-dropping inventions. Some of AI inventions we have known till yet are: Mach

How to unhide or show folders in mx player list

In this blog post, I tell you about how to Show or Hide folders from MX player list. There are two methods to Show folder from MX Player list. Method 1: Unhide / show folders If you want to temporarily Show / Unhide hidden folder from MX Player list, then go to Settings and untick Recognize .nomedia ".  Method 2: Permanently unhide / show folder: Open memory by any file explorer and I recommend X-Plore, and open the folder that is Hidden and find the file " .nomedia ". If you didn't find it, you should first enable "Show files hidden files that starts with .(dot)". Delete the file and you just need to refresh MX Player list to take changes. Note: MX Player always hide those folders which file " .nomedia " exists.

How to use arrays in Python

Arrays in Python give you a huge amount of flexibility for storing, organizing, and accessing data. This is crucial, not least because of Python’s popularity for use in data science. But what precisely is an array? And how do you use arrays in Python? Also read: How to use dictionaries in Python Read on, and we’ll shed some light on the matter. What is an array? An array is a way to store multiple values in a single variable. That means that you can use a single “reference” in order to access your data. A list is also an example of a variable that stores multiple values, but has some slight differences. When using lists in Python, you store a series of values each with a numbered index. For example, this is how you would create a list of fruits in Python: fruits = [“apple”, “orange”, “pear”, “nectarine”] If we then say: print(fruits[3]) We will see “nectarine” appear on the screen (the first entry is stored as “0”). Also read: How to use lists in Python This is not an