Does pyhton consists of just a black screen?, Can not it be made an executable.exe file with forms & toolboxes ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Does pyhton consists of just a black screen?, Can not it be made an executable.exe file with forms & toolboxes ?

13th Aug 2018, 9:52 PM
Bold Pilot
Bold Pilot - avatar
3 Answers
+ 3
If you just want a program that has a GUI, see tkinter. If you want to try and implement simple graphics, try pygame.
13th Aug 2018, 9:59 PM
Just A Rather Ridiculously Long Username
+ 1
You can convert py files into exe files. If you have python on your computer, install auto-py-to-exe with pip. You can then convert your python programs.
13th Aug 2018, 9:56 PM
Théophile
Théophile - avatar
+ 1
The "black screen" is in fact the console of your computer. You can change the output: import sys sys.stdout="Filename.txt" print("Hello World!") "Hello World" was printed in the file!
13th Aug 2018, 10:03 PM
Théophile
Théophile - avatar