I want to write a code that continues the message box after receiving an answer. for example: If they answer yes they get another message box, and same applies for no.
I'm not sure how to word it correctly i hope it makes sense.
I've tried with this:
import tkinter
import tkinter.messagebox
tkinter.messagebox.askyesno(title = "Reginának" , message = "Mizu?")
answer = (tkinter.messagebox.askyesno = "yes")
if answer != "yes"
tkinter.messagebox.showwarning(title = "Reginának" , message = "Persze")
Although i do know that it's not right i was just trying to do something with my limited knowledge :))
Try this.
Code: