Functions


def

#!/usr/bin/python3

# ----- function without arguments -----
def greeting():
    print("-----------------------------")
    print("         Hello World         ")
    print("-----------------------------")

greeting()

# ----- function with arguments -----
def sum_two_numbers(num1, num2):
    total = num1 + num2
    print("{} + {} = {}".format(num1, num2, total))

sum_two_numbers(3, 4)

# ----- function with return value -----
def num_square(num):
    return num * num

my_num = 3
print(num_square(2))
print(num_square(my_num))
  • The def keyword is used to define functions
  • Functions have to be defined before use
  • A common syntax error is leaving out : at end of def statement
  • Block of code for functions, control structures, etc are distinguished by indented code
  • The default return value is None
  • How variables are passed to functions in Python
  • format is covered in next topic
$ ./functions.py 
-----------------------------
         Hello World         
-----------------------------
3 + 4 = 7
4
9

Default valued arguments

#!/usr/bin/python3

# ----- function with default valued argument -----
def greeting(style_char='-'):
    print(style_char * 29)
    print("         Hello World         ")
    print(style_char * 29)

print("Default style")
greeting()

print("\nStyle character *")
greeting('*')

print("\nStyle character =")
greeting(style_char='=')
  • Often, functions can have a default behavior and if needed changed by passing relevant argument
$ ./functions_default_arg_value.py 
Default style
-----------------------------
         Hello World         
-----------------------------

Style character *
*****************************
         Hello World         
*****************************

Style character =
=============================
         Hello World         
=============================
  • Triple quoted comment describing function purpose is a usually followed guideline
  • To avoid distraction from example code, docstrings for programs and functions won't be generally used in this tutorial
    • See Docstrings chapter for examples and discussion
def num_square(num):
    """
    returns square of number
    """

    return num * num

Further Reading

There are many more ways to call a function and other types of declarations, refer the below links for more info


  • By default, print function adds newline character
  • This can be changed by passing our own string to the end argument
>>> print("hi")
hi
>>> print("hi", end='')
hi>>> 
>>> print("hi", end=' !!\n')
hi !!
>>>
  • The help function can be used to get quick help from interpreter itself
  • Press q to return back from help page
>>> help(print)

Help on built-in function print in module builtins:

print(...)
    print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)

    Prints the values to a stream, or to sys.stdout by default.
    Optional keyword arguments:
    file:  a file-like object (stream); defaults to the current sys.stdout.
    sep:   string inserted between values, default a space.
    end:   string appended after the last value, default a newline.
    flush: whether to forcibly flush the stream.
  • Multiple arguments to print function can be passed by , separation
  • The default sep is single space character
>>> a = 5
>>> b = 2

>>> print(a+b, a-b)
7 3

>>> print(a+b, a-b, sep=' : ')
7 : 3

>>> print(a+b, a-b, sep='\n')
7
3
  • When printing variables, the str method is called which gives the string representation
  • So, explicit conversion is not needed unless concatenation is required
>>> greeting = 'Hello World'
>>> print(greeting)
Hello World
>>> num = 42
>>> print(num)
42

>>> print(greeting + '. We are learning Python')
Hello World. We are learning Python
>>> print(greeting, '. We are learning Python', sep='')
Hello World. We are learning Python

>>> print("She bought " + num + " apples")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: Can't convert 'int' object to str implicitly

>>> print("She bought " + str(num) + " apples")
She bought 42 apples
  • As an alternative, use multiple arguments and change sep accordingly
>>> print("She bought", num, "apples")
She bought 42 apples

>>> items = 15
>>> print("No. of items:", items)
No. of items: 15

>>> print("No. of items:", items, sep='')
No. of items:15
  • To redirect print output to stderr instead of default stdout, change the file argument
  • See also sys.exit()
>>> import sys
>>> print("Error!! Not a valid input", file=sys.stderr)
Error!! Not a valid input
  • str.format() can be used to style strings and handle multiple variables more elegantly than string concatenation
>>> num1 = 42
>>> num2 = 7

>>> '{} + {} = {}'.format(num1, num2, num1 + num2)
'42 + 7 = 49'

# or save formatting in a variable and use wherever needed
>>> op_fmt = '{} + {} = {}'
>>> op_fmt.format(num1, num2, num1 + num2)
'42 + 7 = 49'
>>> op_fmt.format(num1, 29, num1 + 29)
'42 + 29 = 71'

# and of course the expression can be used inside print directly
>>> print('{} + {} = {}'.format(num1, num2, num1 + num2))
42 + 7 = 49
  • using numbered arguments
>>> num1
42
>>> num2
7
>>> print("{0} + {1} * {0} = {2}".format(num1, num2, num1 + num2 * num1))
42 + 7 * 42 = 336
  • number formatting - specified using optional argument number, followed by : and then the formatting style
>>> appx_pi = 22 / 7
>>> appx_pi
3.142857142857143

# restricting number of digits after decimal point
# value is rounded off
>>> print("{0:.2f}".format(appx_pi))
3.14
>>> print("{0:.3f}".format(appx_pi))
3.143

# aligning
>>> print("{0:<10.3f} and 5.12".format(appx_pi))
3.143      and 5.12
>>> print("{0:>10.3f} and 5.12".format(appx_pi))
     3.143 and 5.12

# zero filling
>>> print("{0:08.3f}".format(appx_pi))
0003.143
  • different base
>>> print("42 in binary = {:b}".format(42))
42 in binary = 101010
>>> print("42 in octal = {:o}".format(42))
42 in octal = 52
>>> print("241 in hex = {:x}".format(241))
241 in hex = f1

# add # for 0b/0o/0x prefix
>>> print("42 in binary = {:#b}".format(42))
42 in binary = 0b101010

>>> hex_str = "{:x}".format(42)
>>> hex_str
'2a'

# can also use format built-in function
>>> format(42, 'x')
'2a'
>>> format(42, '#x')
'0x2a'

# converting string to int
>>> int(hex_str, base=16)
42
>>> int('0x2a', base=16)
42
  • similar to the r raw string prefix, using f prefix allows to represent format strings
    • introduced in Python v3.6
  • similar to str.format(), the variables/expressions are specified within {}
>>> num1 = 42
>>> num2 = 7
>>> f'{num1} + {num2} = {num1 + num2}'
'42 + 7 = 49'
>>> print(f'{num1} + {num2} = {num1 + num2}')
42 + 7 = 49

>>> appx_pi = 22 / 7
>>> f'{appx_pi:08.3f}'
'0003.143'

>>> f'{20:x}'
'14'
>>> f'{20:#x}'
'0x14'

Further Reading


range function

  • By default start=0 and step=1, so they can be skipped or defined as appropriate
    • range(stop)
    • range(start, stop)
    • range(start, stop, step)
  • Note that range output doesn't include stop value - it is always upto stop value but not including it
  • See Lists chapters for discussion and examples on lists
  • Python docs - Ranges - for more info and examples
>>> range(5)
range(0, 5)

>>> list(range(5))
[0, 1, 2, 3, 4]

>>> list(range(-2, 2))
[-2, -1, 0, 1]

>>> list(range(1, 15, 2))
[1, 3, 5, 7, 9, 11, 13]

>>> list(range(10, -5, -2))
[10, 8, 6, 4, 2, 0, -2, -4]


type function

Useful to check data type of a variable or value

>>> type(5)
<class 'int'>

>>> type('Hi there!')
<class 'str'>

>>> type(range(7))
<class 'range'>

>>> type(None)
<class 'NoneType'>

>>> type(True)
<class 'bool'>

>>> arr = list(range(4))
>>> arr
[0, 1, 2, 3]
>>> type(arr)
<class 'list'>


Variable Scope

#!/usr/bin/python3

def print_num():
    print("Yeehaw! num is visible in this scope, its value is: " + str(num))

num = 25
print_num()
$ ./variable_scope_1.py 
Yeehaw! num is visible in this scope, its value is: 25

What happens when a variable declared within a block is used outside of it?

#!/usr/bin/python3

def square_of_num(num):
    sqr_num = num * num

square_of_num(5)
print("5 * 5 = {}".format(sqr_num))
  • Here, sqr_num is declared inside square_of_num function and not accessible outside the block
$ ./variable_scope_2.py 
Traceback (most recent call last):
  File "./variable_scope_2.py", line 7, in <module>
    print("5 * 5 = {}".format(sqr_num))
NameError: name 'sqr_num' is not defined

One way to overcome this is to use the global keyword

#!/usr/bin/python3

def square_of_num(num):
    global sqr_num
    sqr_num = num * num

square_of_num(5)
print("5 * 5 = {}".format(sqr_num))
  • Now, we can access sqr_num even outside the function definition
$ ./variable_scope_3.py
5 * 5 = 25

If a variable name is same outside and within function definition, the one inside the function will stay local to the block and not affect the one outside of it

#!/usr/bin/python3

sqr_num = 4

def square_of_num(num):
    sqr_num = num * num
    print("5 * 5 = {}".format(sqr_num))

square_of_num(5)
print("Whoops! sqr_num is still {}!".format(sqr_num))
  • Note that using global sqr_num will affect the sqr_num variable outside the function
$ ./variable_scope_4.py 
5 * 5 = 25
Whoops! sqr_num is still 4!

Further Reading

results matching ""

    No results matching ""