Thank you to everybody who helped answer my last question:
My friend took the code, and has attempted to use Tkinter to make a box that we could use to make things nicer-looking, but he has been unable to integrate the dice roller from the last question and the Tkinter. Any help or ideas in getting the dice roller into the code below would be wonderful!
from Tkinter import *
def callme():
label3 = Label(root, text = 'Haha! I lied!')
label3.pack(padx = 10, pady = 10)
root = Tk()
label = Label(root, text = 'How many dice do you want to roll?')
label.pack(padx = 10, pady = 10)
entry = Entry(root,bg = 'white').pack(padx = 10, pady = 10)
label2 = Label(root, text = 'How many dice do you want to roll?')
label2.pack(padx = 10, pady = 10)
entry = Entry(root,bg = 'white').pack(padx = 10, pady = 10)
frame = Frame(root, bg = 'yellow')
button = Button(frame, command = callme, text = 'Roll!',width = 5, height = 2)
frame.pack()
button.pack(padx=10,pady=10)
root.mainloop()