WHAT IS GUI And tkinter code example
Example 1: 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()
Example 2: gui in tkinter
from tkinter import *
import os
window = Tk()
window.geometry("450x450")
window.title("Gui App")
window.configure(bg="powder blue")
filename = Entry(window, width=75)
filename.pack()
def runFile():
try:
os.startfile(filename.get())
except:
error = Label(window, text=f"No file found as {filename.get}")
error.pack()
open_file_button = Button(window, text="Run File", command=runFile)
open_file_button.pack()
window.mainloop()