Currently executing this in google colab:
!python myfile.py --size 45 --file textfile.txt --data_folder somePath/folder
How can I put the above command into a python file (executeNow.py), so that I'll be able to run this in google colab:
!python executeNow.py
Namely what should be written inside execute.py so that the above to commands will be equivalent?