0
How to create an app...?????is only python enough???what are frameworks and libraries..?đ°confused
3 Answers
+ 5
Yes!
You can use tkinter for making gui and apps.
+ 1
Adding to what Priyanshiđ said, Kivy is another framework. Tkinter looks a bit old fashioned and as far as I know (I might be wrong here), you can't package it for Android and IOS (that is, it will only work on a PC).
On the other hand, Kivy's UI is newer. Also it works on Windows, Linux, MacOS, Android and IOS. And it is fairly easy to package it for mobile phones. Also, if you are a beginner, its OOP structure will help you learn
+ 1
I prefer PyQt5 over tkinter. They have a nice application you can install to basically drag and drop to build your gui. To make a file into an application, i assume you mean .app file or .exe. while .exe is easier it wont work on android or ios, either way look up tutorials for converting your code files to one of these file types for distribution.