info = "Hello, Welcome" + "\n" + "Please follow the instructions"
tkMessageBox.showinfo("Welcome", info)
What should I add to the string info to display "Up arrow symbol" in the next line of message box?
Use a Unicode string, and include a suitable Unicode arrow character; U+2191 for example:
info = u"Hello, Welcome\nPlease follow the instructions \u2191"
tkMessageBox.showinfo("Welcome", info)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With