Create a program that resembles the image below. The interface uses one text entry for a name, one button, and two labels. code example
Example: basic tkinter gui
import tkinter as tk
root = tk.Tk()
root.title("my title")
root.geometry('200x150')
root.configure(background='black')
# enter widgets here
root.mainloop()