I am very new to Python and am using python 3.6. I want to convert my .py file to an .exe file. I'm learning to do so with the help of this tutorial, but I am stuck in step 3 because of the following error:
IndexError: tuple index out of range
setup.py:
from distutils.core import setup  
import py2exe  
setup(console=['hello.py'])*  
How can I fix this?
 
     
     
     
    