Advertisement
Guest User

Untitled

a guest
Nov 26th, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. def finnishstory(oldRoot):
  2. oldRoot.destroy()
  3. root = Tk()
  4. root.geometry('520x175+250+70')
  5. lab= Label(root, text = "That room looked really dark and it didn´t have anything inside, I felt like I was dreaming."
  6. "\n I walked slowly inside and saw a shiny woman standing infront of me."
  7. "\n She said 'You´re not welcome to my world' first I thought it´s just friends trolling me,"
  8. "\n but now I found out i´m in some other world, so I asked the woman if I could go home."
  9. "\n The woman said you will have to asnwer an hard question, or just kill your self and wake up."
  10. "\n So the question is, 'What is 9+10'")
  11. lab.pack()
  12. button = Button(root, text = '19',width=100,bg="white",)
  13. button.pack()
  14. button = Button(root, text = '21',width=100,bg="white",)
  15. button.pack()
  16. button = Button(root, text = 'Die',width=100,bg="white",)
  17. button.pack()
  18. root.resizable(0,0)
  19. root.title(" Story ")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement