Return value for functions in Python

Functions in Python might have return value specified, otherwise return None by default:

def add_two_nums(num_1, num_2):
  return num_1+num_2