Apr-08-2017, 08:33 AM
I wrote a project with 4 files. The first is only for the imports. The following 3 files, hundling numbers, factorial, and one sort. The whole works well. Here is the code of the first file...................:................................................................................
# flle1.py import file2 import file3 import file4 def foo1(): print("This is function foo1 from file1.py") file2 file3 file4 foo1() file2 file3 file4