Example 01ΒΆ

This section contains the example_01 script.

Download file: example_01.py

 1#!/usr/bin/env python
 2# -*- coding: utf-8 -*-
 3
 4"""
 5Example script 
 6"""
 7
 8from __future__ import print_function
 9import project
10
11if __name__ == '__main__':
12
13    parameter_01 = 1
14    parameter_02 = 2
15    parameter_03 = 3
16
17    # call function_01
18    result = project.function_01(parameter_01, parameter_02, parameter_03)
19    print (result)