コード例 #1
0
ファイル: exercise1.py プロジェクト: ripnet/ignorethis
from my_func import my_func
my_func()
コード例 #2
0
def main():
	 my_func()
コード例 #3
0
#!/usr/bin/env python

import my_func

my_func.my_func()
コード例 #4
0
#!/usr/bin/env python

import my_func

my_func.my_func()
コード例 #5
0
ファイル: excercise1.py プロジェクト: jrogers512/pynet
def main():
    #Write program here
    my_func()
コード例 #6
0
def main():
    my_func()
コード例 #7
0
ファイル: test.py プロジェクト: oliviaguest/example-ci
 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)
コード例 #8
-1
ファイル: my_script.py プロジェクト: vpalacio/p4ne
#!/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()