Do python apps have a visual? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
+ 1

Do python apps have a visual?

I have noticed other types of codes having a visual like a background with a title and buttons. Is this the same for python?

25th May 2023, 10:26 PM
Lizzie
Lizzie - avatar
5 Réponses
+ 6
Python itself is primarily focused on logic and functionality rather than visual appearance. However, you can use external libraries like Tkinter, PyQt, wxPython, and Kivy to create graphical user interfaces (GUIs) in Python. Tkinter, included with most Python installations, allows you to design windows with buttons, labels, and entry fields. Other libraries offer more advanced capabilities for creating complex GUIs with modern UI elements. Python apps can have visuals through these libraries, enabling the creation of windows, dialogs, and interactive components. While Python is widely used for backend development and data analysis, it can also be leveraged for building visually appealing applications with the help of GUI libraries.
26th May 2023, 3:27 AM
Jan Markus
+ 1
you can also set up a local Python server with Django, Flask, FastApi, etc and use the browser as your GUI. A bit harder, but you can get very fancy results if you're also handy with web frontend design (html,css,js).
26th May 2023, 5:13 AM
Bob_Li
Bob_Li - avatar
0
Look on introduction to python it might be there
26th May 2023, 7:42 AM
Tony
Tony - avatar
0
In real world, what programming language is python usually paired with that deals with the aesthetics of a program (design, visual etc)?
31st May 2023, 3:15 AM
Bea Ramillano
Bea Ramillano - avatar
0
in data science, Python is usually used in Jupyter notebooks. Using the browser as user interface to provide a convenient working environment. Here is a nice Jupyter GUI video tutorial https://m.youtube.com/watch?v=f0WmLo8AVxo streamlit https://m.youtube.com/watch?v=_Um12_OlGgw
31st May 2023, 3:34 AM
Bob_Li
Bob_Li - avatar