Example #1
0
import sys
import os

cwd = os.getcwd()

sys.path.append()

from generate_list import printIt

count = 0
while (count <= 1000):
    print(printIt(), count)
    count = (count + 1)
Example #2
0
#! Insert the current diractory path to Python path
import sys
import os
cwd = os.getcwd()

sys.path.append(cwd)
#print (sys.path)

#Test the module: generate_list
from generate_list import printIt
for i in range(1000):
    printIt()
Example #3
0
def main():
    printIt()