How do I make a pop-up dialog box in Python?

from tkinder import messagebox
title = 'Customer Feedback'
text = 'Did you like our customer service?'
reply = messagebox.askquestion(title, text)
if reply == 'yes':
print('Thank you very much...')
else:
print('We regret the inconvenience, Please give us another chance.')