How to bring my code to life | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

How to bring my code to life

This might sound so amatuerish but I am just curious. Please, now that I have learnt to make a calculator,I am just curious how do I practicaly use the calculator or turn it into a software that can be used by others. Jusy like I am learning to make the Tic Tac game already...how do Inshare it such that another person can attempt to play the game using the code I wrote. Thanks.

16th Dec 2019, 6:22 AM
McSeun Tolu
McSeun Tolu - avatar
3 Answers
+ 3
I have a doubt. Your English is good enough but it think you are not able to express your issues. Either you have completed the calculator GUI and now want to add functions to it. Or you just completed one of those dev log/ terminal calculators and thinking if you can add a GUI. Or you think an application is something with a .exe format or something which lyes in your app drawer. Well an application need not to be an .exe(executable). It can also be a .jar(java archive) or a simple .py(python script) Finally, if i didn't got you, please try to elaborate on the issue and not life or action. If i got you, you can request anyone of us to elaborate on the issue.
17th Dec 2019, 10:24 AM
Anirudh Sharma
Anirudh Sharma - avatar
+ 3
You can one day turn it into an Android or IOS App and publish it in the App Store. You may need to change the language.
17th Dec 2019, 10:57 PM
Sonic
Sonic - avatar
+ 2
pyinstaller yoursourcecode.py -F -i fancyicon.ico in cmd/terminal. the arguments are optional. I recommend looking at the pyinstaller documentation but this should be enough to get you started. if you can't use pyinstaller, you need to install a python distribution first. I recommend the official, latest python 3 release from python.org but depending on your needs, you might also like to check out Anaconda3.
17th Dec 2019, 4:16 AM
grdr