Files
PyTutorials/testImport.py

8 lines
198 B
Python

#This is a file with a few functions in it and is used as a test for the fileAdd.py file
def testFunction():
return "This is the test function"
def testFunction2(num1, num2):
return num1 + num2