I am trying to create this program for a restaurant named Neelam. Here's a sample
from Tkinter import *
root=Tk()
w=Label(root,text="**WELCOME TO NEELAM**")#THIS COMES AS A LABEL
w.pack()
s=Label(root,text="*FINE DINE RESTAURANT*")#SO DOES THIS ONE
s.pack()
category=raw_input('BF-BREAKFAST S-SNACKS\n')#HOW TO MAKE THIS ONE ?
q=input('Enter Quantity\n')