I am trying to display some value from variable in message box using Python for example following is my code and I have to display the values of a and b on message box so what should I do?
import tkinter as tk
a="hello"
b="how are you"
tk.messagebox.showinfo("info name",a,b)
showinfo(). e.g.tk.messagebox.showinfo("info name", a + b)