79178063

Date: 2024-11-11 14:42:12
Score: 1.5
Natty:
Report link

I think the problem is with the dark theme. You are using dark theme and text might be using black color. try changing fg color to white.

from tkinter import *
root = Tk()
# Create label widget
myLabel = Label(root, text="Hello World!", fg="white")
# Pack it onto the screen
myLabel.pack()

root.mainloop()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user28242007