Python Forum
pyinstaller - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: pyinstaller (/thread-29909.html)



pyinstaller - rami84 - Sep-25-2020

Hello
i can't make an exe file for this script
import xlsxwriter
name = input("Enter Name:  ")
age= input("Enter age:  ")
workbook = xlsxwriter.Workbook("{}.xlsx".format(name))
worksheet = workbook.add_worksheet("Arrival")
worksheet.write('B2', "Name")
worksheet.write('B3', "Age")
worksheet.write('C2', name)
worksheet.write('C3', float(age))
workbook.close()
[size=medium]what should i do to make exe file ????