#๐Ÿ”’ Help! cant make a title in tkinter

7 messages ยท Page 1 of 1 (latest)

orchid whale
#

I have to make a disclaimer for my code at the very top of the GUI but nothing I try has worked.

oblique roverBOT
#

@orchid whale

Python help channel opened

Remember to:

  • Ask your Python question, not if you can ask or if there's an expert who can help.
  • Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
  • Explain what you expect to happen and what actually happens.

:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.

orchid whale
#

I would like it if it were above the "How are you feeling?"

#

def create_disclaimer(self):
disclaimer_text = (
"Disclaimer: This program is not a substitute for qualified medical assistance. "
"If you are in crisis or need immediate help, please contact a mental health professional or call emergency services.
"
)
disclaimer_label = tk.Label(self, text=disclaimer_text, wraplength=580, font=("Calibri", 14, "bold"), bg="light blue", fg="red")
disclaimer_label.pack(pady=25)

orchid whale
#

!close

oblique roverBOT
#
Python help channel closed

This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.