diff --git a/open.py b/open.py index d790fb5..c21ac5d 100644 --- a/open.py +++ b/open.py @@ -5,11 +5,13 @@ var = StringVar() #defining objects of the required tkinter classes label = Label(root, textvariable = var, font='Helvetica 20 bold italic', fg='blue', bg='white') -var.set("Jaypee Institute Of Infromation Technology") +var.set("Jaypee Institute Of Infromation Technology, Noida") +#creating application's root menu menu = Menu(root) root.config(menu=menu) +#creating submenu for different options subMenu = Menu(menu) menu.add_cascade(label='Select The Hub', menu=subMenu) subMenu.add_command(label='Robotics')