app with python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

app with python

I want to create an app (not a web app) in python, but I don't know which programmation language I have to use for the front end pls help me, I'm a beginer

5th Sep 2021, 2:54 PM
NotBadPlayer
NotBadPlayer - avatar
21 Answers
+ 2
Sololearn does not offer courses for GUIs. As to python in general I recommend these sololearn courses in this order: Python for Beginners Python Data Structures Intermediate Python Python Core.
5th Sep 2021, 5:32 PM
Simon Sauter
Simon Sauter - avatar
+ 4
If you are talking about creating a GUI, you can use several modules available in python.I use tkinter for developing my any Desktop app in python. You can check my github(link in profile section), it may help you.
6th Sep 2021, 3:24 AM
Kartikey Kumar
Kartikey Kumar - avatar
+ 3
explain *programmation* HTML, CSS and JS are the big three languages that you need to know in front-end. you don't have to learn any programming language aside from Javascript for front-end.
5th Sep 2021, 3:35 PM
Rellot's screwdriver
Rellot's screwdriver - avatar
+ 2
the link below has some examples for starting in c#, c++, visual basic, and javascript. what might be helpful is sampling the different languages to see which one looks easier for you to read. when you feel lile you are ready, choose one language and take it one line at a time. good luck on your journey! https://docs.microsoft.com/en-us/windows/uwp/porting/getting-started-choosing-a-programming-language
5th Sep 2021, 5:55 PM
you are smart. you are brave.
you are smart. you are brave. - avatar
+ 1
What kind of app do you want to make? For what platform, what operating system?
5th Sep 2021, 5:09 PM
Simon Sauter
Simon Sauter - avatar
+ 1
If you want to make an application for windows I assume that you want to create a GUI (graphical user interface). Python offers several modules for that. The most popular GUIs for python are qt and tkinter, but there are other options. Apart from the GUI you need the code that does the actual work. Here all depends on what you want your programme to do.
5th Sep 2021, 5:29 PM
Simon Sauter
Simon Sauter - avatar
+ 1
i am aware of python web frameworks, like django and flask, that utilize html and css. i also recently learned you can use python in html instead of javascript. you may want to post that as a new question to get more visibility.
5th Sep 2021, 6:16 PM
you are smart. you are brave.
you are smart. you are brave. - avatar
+ 1
thanks a lot
5th Sep 2021, 6:37 PM
NotBadPlayer
NotBadPlayer - avatar
+ 1
Python can be used for creating GUI apps. There is a lot of libraries to work with gui in python, the chosen tool depends on your goal. I can name a few with which i had experience: Pygame – for game development (with no pre-implemented buttons etc.) PyQT – beautiful way to make GUI (not beginner oriented) Tkinter – for amateur projects (more ugly)
7th Sep 2021, 12:52 PM
Demian
Demian - avatar
0
for an app like bitlocker
5th Sep 2021, 5:13 PM
NotBadPlayer
NotBadPlayer - avatar
0
For what platform (mobile, desktop)? For what os (windows, macos, linux, ios, android, ...)?
5th Sep 2021, 5:16 PM
Simon Sauter
Simon Sauter - avatar
0
windows, what is the difference between mobile or desktop? (sorry I'm really just start coding and I'm not good at English)
5th Sep 2021, 5:22 PM
NotBadPlayer
NotBadPlayer - avatar
0
Desktop means a regular computer or a laptop. Mobile means tablets and smartphones. There are some hardware differences. And mobile devices usually use different operating systems.
5th Sep 2021, 5:26 PM
Simon Sauter
Simon Sauter - avatar
0
so it's for a desktop app
5th Sep 2021, 5:28 PM
NotBadPlayer
NotBadPlayer - avatar
0
did you know how to attach html and css file to the python programs?
5th Sep 2021, 6:08 PM
NotBadPlayer
NotBadPlayer - avatar
0
thanks a lot!
5th Sep 2021, 6:22 PM
NotBadPlayer
NotBadPlayer - avatar
0
HTML and CSS are for web development. Since you want to make a desktop app you should look into GUIs instead. https://en.m.wikipedia.org/wiki/Graphical_user_interface https://www.askpython.com/JUMP_LINK__&&__python__&&__JUMP_LINK-modules/top-best-python-gui-libraries
5th Sep 2021, 6:24 PM
Simon Sauter
Simon Sauter - avatar
0
tkinter use other command so my code that I wrote previously is now not working. can you advise me for other GUIs which will make my code work
5th Sep 2021, 6:30 PM
NotBadPlayer
NotBadPlayer - avatar
0
There's no way to tell without knowing your code. Also I'm not particularly familiar with GUI programming myself. The askpython link above gives a short overview of some of the most popular GUI libraries for python.
5th Sep 2021, 6:33 PM
Simon Sauter
Simon Sauter - avatar
0
If you'd like to build multiplatform apps using Python, then I'd suggest you learn Kivy and KivyMD; you can build apps and 2D games that look like the ones you see on your phone.
6th Sep 2021, 10:55 PM
Ogunleke Samuel Ayomide
Ogunleke Samuel Ayomide - avatar