Tue Jan 30 08:45:03 2024 python_import_test(): Python version: 3.8.10 This program demonstrates how a Python function can import information from a Python library that is in another directory. Here, we want to request a sample problem from the library "test_partial_digest.py", which is in another directory, and then apply partial_digest_recur(). partial_digest_recur() generates solutions to the partial digest problem, using recursion. test_partial_digest() creates test problems for the partial digest problem. Number of nodes = 6 Maximum distance = 20 Locations: 0 0 1 6 2 8 3 9 4 11 5 20 Distances: 0 1 1 2 2 2 3 3 4 3 5 5 6 6 7 8 8 9 9 9 10 11 11 11 12 12 13 14 14 20 Solution: 0 0 1 20 2 14 3 12 4 11 5 9 Solution: 0 0 1 20 2 14 3 12 4 9 5 11 Solution: 0 0 1 20 2 6 3 8 4 11 5 9 Solution: 0 0 1 20 2 6 3 8 4 9 5 11 python_import_test(): Normal end of execution. Tue Jan 30 08:45:03 2024