+ 1
How Convert py to exe
I tried very ways to convert py to exe but I'm not successful can you help me? my python is 3.6
4 Answers
+ 3
Pyhton is an scripting language.
Consider creating a variable.
>>> var = 10
and in the next line
>>> var = "Long string..."
this means size of storage for this var will be specified during runtime.
Such thing is not possible in Exe(it's assembly code). Even if you exported one with Python it's not gonna perform well.
+ 1
you can convert py to exe by using pyinstaller.
(for more info come to my pv :) )
0
Python 2.x was able. But i haven't heard of python 3.x to export exe.
0
Use py2exe module. In the past I have found many tutorials on youtube.