I need to import a python file lets name it 123xzy.py My problem is that this file name starts with numbers, and changes with every use.
I tried to use the following approach:
vt=str(sys.argv[2])
import vt
but its not working. If you know a way to import a python file with a variable name please let me know.
Thank you :)