# Sorry, but not yet. Sorry, but not yet. >>> import test >>> test.sum(14,45) Traceback (most recent call last): File "", line 1, in test.sum(14,45) AttributeError: 'module' object has no attribute 'sum' >>> >>> import test >>> from test import * >>> sum(12,54) Traceback (most recent call last): File "", line 1, in sum(12,54) TypeError: 'int' object is not iterable >>> I have save the file test.py into the Python27 folder, but nothing...