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()