DEV Community

Cover image for functions in python
Aswin Barath
Aswin Barath

Posted on • Updated on

functions in python

Alright, let's start with what functions actually are?

  • OK, a function is a piece of code.
  • A function may/may not accept input(s).
  • A function may/may not return an output(s).

Why do we need functions in a program?

  • Well, the Reusability of the code in a program is made possible through functions.
  • The program can call these so-called functions, n - number of times.
  • This showcases the best practice in a program called DRY.

DRY - Do not Repeat Yourself

  • A code is said to be DRY if any given code does not repeat certain tasks
  • A function implements this just by writing once and using whenever necessary.

Quick intro to functions in python

Creating a function

  • To create a function we use the keyword def.
  • def must be followed by the function name.
  • followed by a parenthesis filled with formal parameters(optional).
  • The statements that follow up makes the body of the function.
  • Note: Any code written inside a function must be indented.
  • Let's see an example where I thank every one of my readers: Alt Text

Calling a function

  • To call a function we use the function name followed by parenthesis filled with actual parameter also known as arguments.
  • This is when the code inside the function actually gets executed.
  • Let's see the same example and its output: Alt Text
  • Output:
Hello there John Doe
Thank you for taking your time to read my post ;)
Hello there Jane Doe
Thank you for taking your time to read my post ;)
Enter fullscreen mode Exit fullscreen mode

Passing arguments to a function

  • We can pass arguments to a function through the function call.
  • We do this by writing the arguments inside the parenthesis of a function call.
  • Didn't you notice passing arguments to a function already? Look into the above example closely:
reader("John Doe")
reader("Jane Doe")
Enter fullscreen mode Exit fullscreen mode
  • The function call reader() passes the strings "John Doe" and "Jane Doe" as arguments to the function.

There you go, now you can create your own functions and play with it.

Best Resources

Who Am I?

I’m Aswin Barath, a Software Engineering Nerd who loves building Web Applications, now sharing my knowledge through Blogging during the busy time of my freelancing work life. Here’s the link to all of my socials categorized by platforms under one place: https://linktr.ee/AswinBarath

Thank you so much for reading my blog🙂.

Top comments (0)