Example #1
0
from my_func import my_func
my_func()
def main():
	 my_func()
#!/usr/bin/env python

import my_func

my_func.my_func()
Example #4
0
#!/usr/bin/env python

import my_func

my_func.my_func()
Example #5
0
def main():
    #Write program here
    my_func()
def main():
    my_func()
Example #7
0
 def test_my_func(self):
     self.assertTrue(my_func(3, 5) == 8)
     self.assertTrue(my_func(1000, 2000) == 3000)
     self.assertTrue(my_func(1, 1) == 0)
Example #8
-1
#!/usr/bin/env python

'''
Python for Network Engineers: P4NE - Bring it!

Excercise 1C
'''
from my_func import my_func

__author__ = "Victor Palacio"
__license__ = "GPL"
__version__ = "1.0"
__email__ = "Github - @vpalacio"

my_func()