Answers for "python librirs for gui"

3

python gui best

Top 5 Best Python GUI Libraries
  PyQT5.
  Python Tkinter.
  PySide 2.
  Kivy.
  wxPython.
  
This is a small list, though making gui s in Python is not really recommended.
I would personally recommend a language such as C# for creating programs
that need a gui.
Posted by: Guest on April-06-2021
1

python gui

# App python gui

import tkinter as tk
import webbrowser as wb


def Facebook():
    wb.open('facebook.com')


def Instagram():
    wb.open('instagram.com')


def Twitter():
    wb.open('twitter.com')


def Youtube():
    wb.open('youtube.com')


def Google():
    wb.open('google.com')


window = tk.Tk()
window.title('Browser')

google = tk.Button(window, text='Google', command=Google)
youtube = tk.Button(window, text='Youtube', bg='red', fg='white', command=Youtube)
twitter = tk.Button(window, text='Twitter', bg='powder blue', fg='white', command=Twitter)
Instagram = tk.Button(window, text='Instagram', bg='white', fg='black', command=Instagram)
facebook = tk.Button(window, text='Facebook', bg='blue', fg='white', command=Facebook)
facebook.pack()
Instagram.pack()
twitter.pack()
youtube.pack()
google.pack()

window.mainloop()
Posted by: Guest on November-07-2020

Python Answers by Framework

Browse Popular Code Answers by Language