i have 3 python scripts ('testPrint01.py','testPrint02.py','testPrint03.py') and i would like to call function from 'testPrint02'
import sys
sys.path.append(path)
a = ['testPrint01','testPrint02','testPrint03']
import sys.a[1]
a[1].justPrintIt()
thank you